mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-10 00:27:41 +08:00
fix(ie): classList does not support variadic (#19460)
This commit is contained in:
@ -48,7 +48,7 @@ export class Tab implements ComponentInterface {
|
||||
this.active = true;
|
||||
}
|
||||
|
||||
private async prepareLazyLoaded(): Promise<HTMLElement | undefined> {
|
||||
private prepareLazyLoaded(): Promise<HTMLElement | undefined> {
|
||||
if (!this.loaded && this.component != null) {
|
||||
this.loaded = true;
|
||||
try {
|
||||
@ -57,7 +57,7 @@ export class Tab implements ComponentInterface {
|
||||
console.error(e);
|
||||
}
|
||||
}
|
||||
return undefined;
|
||||
return Promise.resolve(undefined);
|
||||
}
|
||||
|
||||
render() {
|
||||
|
||||
Reference in New Issue
Block a user