stream-chat-angular 5.13.0 → 5.13.1

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.
@@ -20,7 +20,7 @@ import transliterate from '@stream-io/transliterate';
20
20
  import * as i8$1 from 'angular-mentions';
21
21
  import { MentionModule } from 'angular-mentions';
22
22
 
23
- const version = '5.13.0';
23
+ const version = '5.13.1';
24
24
 
25
25
  /**
26
26
  * The `NotificationService` can be used to add or remove notifications. By default the [`NotificationList`](/chat/docs/sdk/angular/components/NotificationListComponent/) component displays the currently active notifications.
@@ -5486,12 +5486,7 @@ class MessageComponent {
5486
5486
  });
5487
5487
  }
5488
5488
  this.subscriptions.push(this.messageActionsService.messageMenuOpenedFor$.subscribe((id) => {
5489
- if (this.message && this.message.id === id) {
5490
- if (!this.areMessageOptionsOpen) {
5491
- this.messageMenuTrigger?.show();
5492
- }
5493
- }
5494
- else if ((id === undefined || this.message?.id !== id) &&
5489
+ if ((id === undefined || this.message?.id !== id) &&
5495
5490
  this.areMessageOptionsOpen) {
5496
5491
  this.messageMenuTrigger?.hide();
5497
5492
  }