changed action icon

This commit is contained in:
Mr. Stallion 2022-12-08 10:53:07 -08:00
parent ae1303b0c7
commit d52bd32461
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
# Changelog
## 1.19.3
* Fixed asexual orientation ID
* Replaced the action star icon to differentiate with the mod badges
## 1.19.2
* Fixed a bug that could lead to ad-flooding if the client experiences frequent connection drops

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 fas fa-star' }) : '',
(message.type === Conversation.Message.Type.Action) ? createElement('i', { class: 'message-pre fa-solid 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]) : ' '
);