changed action icon
This commit is contained in:
parent
ae1303b0c7
commit
d52bd32461
|
@ -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
|
||||
|
||||
|
|
|
@ -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]) : ' '
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue