This commit is contained in:
Mr. Stallion 2022-12-10 13:16:07 -08:00
parent d52bd32461
commit 29c71538d7
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ const userPostfix: {[key: number]: string | undefined} = {
` ${this.filterClasses}`;
if(message.type !== Conversation.Message.Type.Event) {
children.push(
(message.type === Conversation.Message.Type.Action) ? createElement('i', { class: 'message-pre fa-solid fa-star-of-life' }) : '',
(message.type === Conversation.Message.Type.Action) ? createElement('i', { class: 'message-pre fas fa-star-of-life' }) : '',
createElement(UserView, {props: {character: message.sender, channel: this.channel}}),
userPostfix[message.type] !== undefined ? createElement('span', { class: 'message-post' }, userPostfix[message.type]) : ' '
);