From e0161dc0724e8b73b737767b89ce60c5b23dc9d9 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Tue, 17 Mar 2020 19:52:28 -0500 Subject: [PATCH] Cleanup --- chat/ChatView.vue | 4 ++-- chat/UserView.vue | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) 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; */ - -