Removed console.log line

This commit is contained in:
Fabio Manganiello 2020-06-21 18:27:28 +02:00
parent e52093010a
commit 83b4a30705
1 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,9 @@
<i :class="action.iconClass" v-if="action.iconClass" />
<i class="fas fa-cog" v-else />
</div>
<div class="name" v-text="name" />
<div class="controls">
<button type="button" class="run" :disabled="loading" @click.stop="runAction" v-if="selectedAction === name">
<i class="fas fa-play" />
@ -172,7 +174,6 @@ export default {
return;
}
console.log('here');
script.hosts.splice(hostIndex, 1);
if (script.hosts.length === 0) {
delete this.scripts[this.selectedScript];