Skip to content

Commit d3ad756

Browse files
committed
feat: Update stream-chat-css version
1 parent 2b447dc commit d3ad756

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

docusaurus/docs/Angular/code-examples/pin-messages.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ The `message` variable has [`StreamMessage`](../types/stream-message.mdx) type,
5454

5555
## Jump to a pinned message
5656

57-
Let's add a click event handler to the pinned message, and jump to the message:
57+
Let's add a click event handler to the pinned message, and jump to the message (works for channel and thread messages as well):
5858

5959
```typescript
6060
jumpToMessage(message: StreamMessage) {
61-
this.channelService.jumpToMessage(message.id);
61+
this.channelService.jumpToMessage(message.id, message.parent_id);
6262
}
6363
```
6464

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
"@ngx-translate/core": "^13.0.0",
118118
"@ngx-translate/http-loader": "^6.0.0",
119119
"@popperjs/core": "^2.11.5",
120-
"@stream-io/stream-chat-css": "3.0.0-theming2.6",
120+
"@stream-io/stream-chat-css": "3.0.0-theming2.8",
121121
"@stream-io/transliterate": "^1.5.2",
122122
"angular-mentions": "^1.4.0",
123123
"dayjs": "^1.10.7",

0 commit comments

Comments
 (0)