From 71a1491548b5e064a9bc567ef416097eab485386 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Mon, 25 Mar 2019 22:48:24 -0600 Subject: [PATCH] Ensure stickers actually load when the widget is reopened --- .../widget-wrappers/sticker-picker/sticker-picker.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/web/app/widget-wrappers/sticker-picker/sticker-picker.component.ts b/web/app/widget-wrappers/sticker-picker/sticker-picker.component.ts index bb0d03f..a1522ab 100644 --- a/web/app/widget-wrappers/sticker-picker/sticker-picker.component.ts +++ b/web/app/widget-wrappers/sticker-picker/sticker-picker.component.ts @@ -127,6 +127,7 @@ export class StickerPickerWidgetWrapperComponent extends CapableWidget implement this.packs = packs.filter(p => p.isSelected); console.log("User has " + this.packs.length + "/" + packs.length + " sticker packs selected"); this.isLoading = false; + this.changeDetector.detectChanges(); } catch (e) { console.error(e); }