Skip to content

Commit b1ac574

Browse files
authored
Merge pull request #304 from GetStream/customization-docs-fix
docs: Fix mistakes in customization documentation
2 parents 82c3250 + 55c4be1 commit b1ac574

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

docusaurus/docs/Angular/components/ChannelComponent.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,7 @@ The `Channel` component is a container component that displays the [`ChannelHead
3030

3131
The `Channel` component doesn't do any settings, it's just displays its children components. The main purpose of this component is to provide the layout for the initial chat UI.
3232

33+
If you want to create your own channel component check out our [customization guide](../concepts/customization.mdx) for more information.
34+
3335
[//]: # "Start of generated content"
3436
[//]: # "End of generated content"

docusaurus/docs/Angular/components/ChannelHeaderComponent.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ The `ChannelHeader` component displays the avatar and name of the currently acti
88

99
## Customization
1010

11-
You can provide your own channel header component by the [`CustomTemplatesService`](../services/CustomTemplatesService.mdx)
12-
1311
If you create your own channel header, you can use the [`ChannelService`](../services/ChannelService.mdx) to access the currently active channel. Please note that, the default channel header also contains the menu button to [toggle the channel list](../services/ChannelListToggleService.mdx). Here is a simple implementation of a custom channel header to guide you:
1412

1513
```typescript
@@ -39,6 +37,8 @@ export class ChannelHeaderComponent {
3937
}
4038
```
4139

40+
If you want to create your own channel component check out our [customization guide](../concepts/customization.mdx) for more information.
41+
4242
## Channel actions
4343

4444
By default no channel action is displayed, but it's possible to [add action buttons to the channel header](../services/CustomTemplatesService.mdx/#channelactionstemplate) component. You can follow our [code example](../code-examples/channel-invites.mdx) that implements the invite action (you can implement other kind of actions as well, for example edit).

docusaurus/docs/Angular/components/NotificationListComponent.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You can use the `NotificationList` component to display the active notifications
1818

1919
## Customization
2020

21-
You can provide your own notification component by the [`CustomTemplatesService`](../services/CustomTemplatesService.mdx)
21+
See [our customization guide](../concepts/customization.mdx) on how to provide your own notification list component.
2222

2323
[//]: # "Start of generated content"
2424
[//]: # "End of generated content"

docusaurus/docs/Angular/components/ThreadComponent.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You can use the default SDK components, or use your own custom components.
2626

2727
## Customization
2828

29-
See [our customization guide](../concepts/customization.mdx) on how to provide your own thread header.
29+
See [our customization guide](../concepts/customization.mdx) on how to provide your own thread header or thread component.
3030

3131
[//]: # "Start of generated content"
3232
[//]: # "End of generated content"

0 commit comments

Comments
 (0)