mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-10 00:27:41 +08:00
fix(fab): do not reset fab activated if it's false
This commit is contained in:
@ -42,7 +42,9 @@ export class Fab implements ComponentInterface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
componentDidLoad() {
|
componentDidLoad() {
|
||||||
this.activatedChanged();
|
if (this.activated) {
|
||||||
|
this.activatedChanged();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Listen('click')
|
@Listen('click')
|
||||||
|
|||||||
Reference in New Issue
Block a user