diff --git a/src/app/shared/labels/labels.ts b/src/app/shared/labels/labels.ts index e2c540f..b4dfdb7 100644 --- a/src/app/shared/labels/labels.ts +++ b/src/app/shared/labels/labels.ts @@ -35,9 +35,15 @@ export class LabelsComponent { this.label = ''; this.showNewLabel = false; + + await this.load(); } async ngOnInit() { + await this.load(); + } + + async load() { this.labels = await this.storageService.storage.getLabels(); } }