Skip to content

Commit 8ddbfd3

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents fe68c22 + 00af43f commit 8ddbfd3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/notification.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ export class NotificationComponent implements OnInit, OnDestroy {
248248
attachOverrides(): void {
249249
Object.keys(this.item.override).forEach(a => {
250250
if (this.hasOwnProperty(a)) {
251-
this[a] = this.item.override[a];
251+
(<any>this)[a] = this.item.override[a];
252252
}
253253
});
254254
}

src/simple-notifications.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export class SimpleNotificationsComponent implements OnInit, OnDestroy {
181181
attachChanges(options: any): void {
182182
Object.keys(options).forEach(a => {
183183
if (this.hasOwnProperty(a)) {
184-
this[a] = options[a];
184+
(<any>this)[a] = options[a];
185185
}
186186
});
187187
}

0 commit comments

Comments
 (0)