diff --git a/src/components/Markdown.vue b/src/components/Markdown.vue
index 87799da48..4c973e87c 100644
--- a/src/components/Markdown.vue
+++ b/src/components/Markdown.vue
@@ -26,7 +26,10 @@
diff --git a/src/model/Alert.model.js b/src/model/Alert.model.js
index 6b609e7fb..e16c1fcef 100644
--- a/src/model/Alert.model.js
+++ b/src/model/Alert.model.js
@@ -22,9 +22,10 @@ export class Alert {
* @param {string} color - color of the displayed alert.
* @param {?string} msg - a custom message to display in the alert instead of err.
*/
- constructor (err, color, msg = null) {
+ constructor (err, color, msg = null, timeout = 10000) {
this.err = err
this.text = msg || err
this.color = color
+ this.timeout = timeout
}
}
diff --git a/src/views/Log.vue b/src/views/Log.vue
index 9a0e81ed6..09901439a 100644
--- a/src/views/Log.vue
+++ b/src/views/Log.vue
@@ -125,6 +125,7 @@ along with this program. If not, see