mirror of
https://github.com/revoltchat/revite.git
synced 2024-12-26 07:22:10 -05:00
ConversationStart changed for notes/normal channel
This commit is contained in:
parent
75704773af
commit
74297085d7
1 changed files with 7 additions and 1 deletions
|
@ -30,7 +30,13 @@ export default observer(({ channel }: Props) => {
|
||||||
<StartBase>
|
<StartBase>
|
||||||
<h1>{getChannelName(channel, true)}</h1>
|
<h1>{getChannelName(channel, true)}</h1>
|
||||||
<h4>
|
<h4>
|
||||||
<Text id="app.main.channel.start.group" />
|
<Text
|
||||||
|
id={
|
||||||
|
channel.channel_type === "SavedMessages"
|
||||||
|
? "app.main.channel.start.saved"
|
||||||
|
: "app.main.channel.start.group"
|
||||||
|
}
|
||||||
|
/>
|
||||||
</h4>
|
</h4>
|
||||||
</StartBase>
|
</StartBase>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue