diff --git a/src/components/BotEntry.vue b/src/components/BotEntry.vue index a9c1b6fe..25c6ebe8 100644 --- a/src/components/BotEntry.vue +++ b/src/components/BotEntry.vue @@ -46,13 +46,15 @@ export default class BotList extends Vue { @ftbot.Action selectBot; - clickRemoveBot(botId: BotDescriptor) { + clickRemoveBot(bot: BotDescriptor) { // - this.$bvModal.msgBoxConfirm(`Really remove (logout) from ${botId}?`).then((value: boolean) => { - if (value) { - this.removeBot(botId.botId); - } - }); + this.$bvModal + .msgBoxConfirm(`Really remove (logout) from '${bot.botName}' (${bot.botId})?`) + .then((value: boolean) => { + if (value) { + this.removeBot(bot.botId); + } + }); } } diff --git a/src/components/BotList.vue b/src/components/BotList.vue index b5ecf110..8dc12b48 100644 --- a/src/components/BotList.vue +++ b/src/components/BotList.vue @@ -6,6 +6,7 @@ v-for="bot in allAvailableBots" :key="bot.botId" :active="bot.botId === selectedBot" + button :title="`${bot.botId} - ${bot.botName} - ${bot.botUrl}`" @click="selectBot(bot.botId)" > diff --git a/src/components/layout/NavBar.vue b/src/components/layout/NavBar.vue index 2ca78837..352bd95b 100644 --- a/src/components/layout/NavBar.vue +++ b/src/components/layout/NavBar.vue @@ -31,7 +31,13 @@ - + @@ -49,14 +55,18 @@