diff options
Diffstat (limited to 'FrontEnd/src')
-rw-r--r-- | FrontEnd/src/app/services/DataHub.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FrontEnd/src/app/services/DataHub.ts b/FrontEnd/src/app/services/DataHub.ts index 93a9b41f..4d618db6 100644 --- a/FrontEnd/src/app/services/DataHub.ts +++ b/FrontEnd/src/app/services/DataHub.ts @@ -22,7 +22,7 @@ export class DataLine<TData> { } ) { if (config.disableInitSync !== true) { - setImmediate(() => void this.sync()); + setTimeout(() => void this.sync()); } } |