fix(fab): do not reset fab activated if it's false

This commit is contained in:
Manu Mtz.-Almeida
2018-09-26 14:35:54 +02:00
parent 7f38d377dd
commit d619d8d17b

View File

@ -42,7 +42,9 @@ export class Fab implements ComponentInterface {
}
componentDidLoad() {
this.activatedChanged();
if (this.activated) {
this.activatedChanged();
}
}
@Listen('click')