From 50dd055c996ba76a27140cb7722a62f42432b038 Mon Sep 17 00:00:00 2001 From: Carlos Jimenez <=> Date: Tue, 2 Jan 2018 14:51:39 +0100 Subject: [PATCH] removed the timeout 400 of the snackbar as it shouldnt be hardcoded --- client/core/src/lib/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/core/src/lib/app.js b/client/core/src/lib/app.js index 5851357d8..3b58309b4 100644 --- a/client/core/src/lib/app.js +++ b/client/core/src/lib/app.js @@ -12,7 +12,7 @@ export default class App { this.$rootScope = $rootScope; } show(message) { - if (this.snackbar) this.snackbar.show({message: message, timeout: 400}); + if (this.snackbar) this.snackbar.show({message: message}); } showMessage(message) { this.show(message);