Skip to content

Commit 15dbe3e

Browse files
committed
Merge branch '6.x.x-rc' into 7.x.x-beta
2 parents bac49da + 3999ce7 commit 15dbe3e

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

projects/stream-chat-angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stream-chat-angular",
3-
"version": "6.0.0-rc.1",
3+
"version": "6.0.0-rc.3",
44
"description": "Angular components to create chat conversations or livestream style chat",
55
"author": "GetStream",
66
"homepage": "https://getstream.io/chat/",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '6.0.0-rc.1';
1+
export const version = '6.0.0-rc.3';

projects/stream-chat-angular/src/lib/message/message.component.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -291,11 +291,7 @@ export class MessageComponent
291291
}
292292
this.subscriptions.push(
293293
this.messageActionsService.messageMenuOpenedFor$.subscribe((id) => {
294-
if (this.message && this.message.id === id) {
295-
if (!this.areMessageOptionsOpen) {
296-
this.messageMenuTrigger?.show();
297-
}
298-
} else if (
294+
if (
299295
(id === undefined || this.message?.id !== id) &&
300296
this.areMessageOptionsOpen
301297
) {

0 commit comments

Comments
 (0)