Commit 78cbaba3 authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

FlashMessenger : les warnings s'affichent 15 secondes, le temps de lire

parent 02e04585
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ function toast(message, severity) {
    // Création et affichage du toast avec bootstrap
    const options = {
        animation: true,
        delay: 5000,
        delay: severity === 'warning' ? 15000 : 5000,
        autohide: severity !== 'error'
    };
    let bsToast = new bootstrap.Toast(toast, options);