aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--view/js/main.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/view/js/main.js b/view/js/main.js
index 4280284ae..7eca7408e 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -1819,18 +1819,19 @@ function toggleAside() {
}
function toast(string, severity) {
+ let id = btoa(string);
let container = document.getElementById('toast-container');
-
- let toast = document.getElementById(btoa(string));
+ let toast = document.getElementById(id);
if (!toast) {
toast = document.createElement('div');
- toast.setAttribute('id', btoa(string));
+ toast.setAttribute('id', id);
toast.innerHTML = '<div class="d-flex"><div class="toast-body">' + string + '</div><button type="button" class="btn-close me-2 m-auto" data-bs-dismiss="toast" aria-label="Close"></button></div>';
toast.classList.add('toast', 'p-2', 'bg-' + severity + '-subtle', 'text-' + severity + '-emphasis', 'border-' + severity);
- container.prepend(toast);
}
+ container.prepend(toast);
+
let toastInstance = bootstrap.Toast.getOrCreateInstance(toast);
if (severity === 'danger') {