Remove no longer needed BotAlerts component

This commit is contained in:
Matthias 2023-09-23 16:25:47 +02:00
parent 491b6d19bb
commit a54b49a237

View File

@ -1,18 +0,0 @@
<template>
<div class="bot-alerts">
<b-alert
v-for="(alert, index) in alertStore.activeMessages"
:key="index"
v-model="alert.timeout"
:variant="alert.severity ?? 'warning'"
dismissible
@closed="alertStore.removeAlert(alert)"
>{{ alert.message }}</b-alert
>
</div>
</template>
<script setup lang="ts">
import { useAlertsStore } from '@/stores/alerts';
const alertStore = useAlertsStore();
</script>