From 2cca4c976510fd563c2b63f14e6c22ce2ff53a39 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 29 Aug 2021 14:18:56 +0200 Subject: [PATCH] Improve responsiveness of navbar --- src/components/BotList.vue | 3 ++- src/components/layout/NavBar.vue | 13 ++++++++++++- src/views/Home.vue | 4 +++- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/src/components/BotList.vue b/src/components/BotList.vue index 06505510..0ebbd716 100644 --- a/src/components/BotList.vue +++ b/src/components/BotList.vue @@ -11,13 +11,14 @@ @click="selectBot(bot.botId)" > {{ bot.botName || bot.botId }} + {{ allIsBotOnline[bot.botId] ? 'Online' : 'Offline' }} + - {{ allIsBotOnline[bot.botId] ? 'Online' : 'Offline' }} diff --git a/src/components/layout/NavBar.vue b/src/components/layout/NavBar.vue index 7c3e9265..31e6bd59 100644 --- a/src/components/layout/NavBar.vue +++ b/src/components/layout/NavBar.vue @@ -37,7 +37,8 @@