barsa-tiles 1.0.257 → 1.0.258

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2187,10 +2187,10 @@ class ShellbarComponent extends BaseComponent {
2187
2187
  this.userLoggedIn$ = this._portalService.userLoggedIn$;
2188
2188
  this.showVersion = !BarsaApi.LoginFormData.IsServiceDesk;
2189
2189
  this._viewedNotifications$
2190
- .pipe(takeUntil(this._onDestroy$), tap((item) => this._viewedNotifications.push(item)), map((item) => this._viewedNotifications), debounceTime(2000), map((items) => items.map((item) => item.Id)))
2191
- .subscribe((items) => {
2190
+ .pipe(takeUntil(this._onDestroy$), tap((item) => this._viewedNotifications.push(item)), map((item) => this._viewedNotifications), debounceTime(2000), map((items) => items.map((item) => item.Tag)))
2191
+ .subscribe((tags) => {
2192
2192
  this._viewedNotifications = [];
2193
- this._notificationService.setNotificationViewed(items);
2193
+ this._notificationService.setNotificationViewed(tags);
2194
2194
  });
2195
2195
  }
2196
2196
  get subtitle() {