Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
inshwechatt2 committed May 23, 2023
1 parent 05d8039 commit 2a206e3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/core/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,11 @@ export class VConsole {
});
// end init
plugin.isReady = true;
plugin.trigger('ready');
// issue #591 is introduce by the fixing for #559
// add a deley to fix (issue #591)
setTimeout(() => {
plugin.trigger('ready');
}, 0);
}

/**
Expand Down

0 comments on commit 2a206e3

Please sign in to comment.