Fixed sent attachments code

This commit is contained in:
nizune 2021-08-04 19:59:29 +02:00
parent 95a149407b
commit 7a8b12e15c
2 changed files with 28 additions and 38 deletions

View file

@ -187,17 +187,12 @@ export const MessageReply = observer(({ index, channel, id }: Props) => {
);
}
}}>
{message.attachments &&
message.attachments.length > 0 && (
{message.attachments && (
<>
<File size={16} />
<em>
{message.attachments.length >
0 ? (
<Text id="app.main.channel.misc.sent_multiple_files" />
) : (
<Text id="app.main.channel.misc.sent_file" />
)}
<em>{message.attachments.length > 1 ?
<Text id="app.main.channel.misc.sent_multiple_files" /> :
<Text id="app.main.channel.misc.sent_file" /> }
</em>
</>
)}

View file

@ -112,17 +112,12 @@ export default observer(({ channel, replies, setReplies }: Props) => {
<UserShort user={message.author} size={16} />
</div>
<div class="message">
{message.attachments &&
message.attachments.length > 0 && (
{message.attachments && (
<>
<File size={16} />
<em>
{message.attachments!.length >
1 ? (
<Text id="app.main.channel.misc.sent_multiple_files" />
) : (
<Text id="app.main.channel.misc.sent_file" />
)}
<em>{message.attachments.length > 1 ?
<Text id="app.main.channel.misc.sent_multiple_files" /> :
<Text id="app.main.channel.misc.sent_file" /> }
</em>
</>
)}