Merge branch 'master' into travis/msc2140-tos

This commit is contained in:
Travis Ralston 2019-07-10 22:22:50 -06:00
commit 9cc1454527
2 changed files with 5 additions and 5 deletions

View File

@ -2,12 +2,12 @@
<my-spinner></my-spinner>
</div>
<div *ngIf="!isLoading">
<my-ibox boxTitle="Sticker Packs" *ngIf="packs.length <= 0">
<my-ibox boxTitle="Sticker Packs" *ngIf="packs.length <= 0 && !customEnabled">
<div class="my-ibox-content">
<h5 style="text-align: center;">Sticker packs are not enabled on this Dimension instance.</h5>
</div>
</my-ibox>
<my-ibox boxTitle="Add Sticker Packs" *ngIf="packs.length > 0 && customEnabled">
<my-ibox boxTitle="Add Sticker Packs" *ngIf="customEnabled">
<div class="my-ibox-content">
<form (submit)="importPack()" novalidate name="importForm">
<label class="label-block">
@ -43,4 +43,4 @@
</div>
</div>
</my-ibox>
</div>
</div>

View File

@ -92,7 +92,7 @@ export class StickerpickerComponent implements OnInit {
const targetUrl = this.window.location.origin + "/widgets/stickerpicker";
if (widgets.response[0].content.url === targetUrl) {
if (Array.isArray(widgets.response) && widgets.response.length && widgets.response[0].content.url === targetUrl) {
console.warn("Not replacing Dimension sticker picker");
return;
}
@ -113,4 +113,4 @@ export class StickerpickerComponent implements OnInit {
console.error(e);
}
}
}
}