mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
Update login alert to work on new bootstrap version
This commit is contained in:
parent
6a0bf44e45
commit
7fd5c2826b
|
@ -55,7 +55,7 @@
|
|||
></b-form-input>
|
||||
</b-form-group>
|
||||
<div>
|
||||
<b-alert v-if="errorMessage" class="alert-wrap" show variant="warning">
|
||||
<b-alert v-if="errorMessage" class="alert-wrap" :model-value="true" variant="warning">
|
||||
{{ errorMessage }}
|
||||
<br />
|
||||
<span v-if="errorMessageCORS">
|
||||
|
|
|
@ -18,5 +18,5 @@ export const useAlertsStore = defineStore('alerts', {
|
|||
|
||||
export function showAlert(message: string, severity: AlertSeverity = 'warning') {
|
||||
const alertsStore = useAlertsStore();
|
||||
alertsStore.addAlert({ message, severity, timeout: 5 });
|
||||
alertsStore.addAlert({ message, severity, timeout: 5000 });
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user