mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-23 11:35:14 +00:00
Remove no longer needed BotAlerts component
This commit is contained in:
parent
491b6d19bb
commit
a54b49a237
|
@ -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>
|
Loading…
Reference in New Issue
Block a user