diff --git a/chat/ChatView.vue b/chat/ChatView.vue index a60c31a..125802a 100644 --- a/chat/ChatView.vue +++ b/chat/ChatView.vue @@ -278,7 +278,7 @@ sheet.insertRule(`.form-control, select.form-control { line-height: 1.428571429 }`, sheet.cssRules.length); } - getOnlineStatusIconClasses(conversation: PrivateConversation) { + getOnlineStatusIconClasses(conversation: PrivateConversation): Record { const status = conversation.character.status; const styling = { @@ -289,7 +289,7 @@ busy: { color: 'away', icon: ['fas', 'fa-circle'] }, idle: { color: 'away', icon: ['fas', 'fa-circle'] }, dnd: { color: 'away', icon: ['fas', 'fa-circle'] }, - away: { color: 'away', icon: ['fas', 'fa-circle'] }, + away: { color: 'away', icon: ['fas', 'fa-circle'] } }; const cls = { [styling[status].color]: true }; diff --git a/chat/UserView.vue b/chat/UserView.vue index 819f348..ac1ed1f 100644 --- a/chat/UserView.vue +++ b/chat/UserView.vue @@ -222,6 +222,4 @@ export default class UserView extends Vue { export default UserView; */ - -