From 1a3df3a67d540c2bcd3964d92a2df4be953da2b0 Mon Sep 17 00:00:00 2001 From: marcsello Date: Tue, 8 Dec 2020 21:21:41 +0100 Subject: [PATCH] epic demo mode --- src/views/Dashboard.vue | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/views/Dashboard.vue b/src/views/Dashboard.vue index 70c7341..3d70840 100644 --- a/src/views/Dashboard.vue +++ b/src/views/Dashboard.vue @@ -26,6 +26,10 @@ + + Your streaming solution is ready! + + @@ -63,7 +67,8 @@ export default { scale: 1, nodes: [], links: [] - } + }, + showDemoMessage: false }), methods: { newElement(type) { @@ -321,6 +326,8 @@ export default { Promise.all(delete_promises).then(() => { this.processingNodeChanges = false; + // Epic demo mode + this.showDemoMessage = this.$store.state.auth.name === 'demo'; }); });