Konstantin Ladutenko 5 years ago
parent
commit
c799f1c09a
1 changed files with 3 additions and 3 deletions
  1. 3 3
      vue-cli3-webapp/src/App.vue

+ 3 - 3
vue-cli3-webapp/src/App.vue

@@ -343,16 +343,16 @@
             message: 'Simulation was started!',
             type: 'is-danger',
             position: 'is-bottom-left',
-            hasIcon: true});
+            });
           setTimeout(
                   () => {
                     this.runMie();
                     this.plotResults();
                     this.$buefy.notification.open({
-                      message: 'Simulation was finished!',
+                      message: 'Finished!',
                       type: 'is-success',
                       position: 'is-bottom-left',
-                      hasIcon: true})
+                      })
                     ;
                   }, 200);
         },