Fix pipeline duplication bug (#128)

This commit is contained in:
Matt
2020-09-17 11:23:00 -07:00
committed by GitHub
parent 24132555b8
commit 3305c6619d
2 changed files with 6 additions and 2 deletions

View File

@@ -76,9 +76,9 @@
lg="2"
>
<v-menu
v-if="!$store.getters.isDriverMode"
offset-y
auto
v-if="!$store.getters.isDriverMode"
>
<template v-slot:activator="{ on }">
<v-icon
@@ -322,7 +322,7 @@
},
deleteCurrentPipeline() {
if (this.$store.getters.pipelineList.length > 1) {
this.handleInputWithIndex('deleteCurrentPipeline');
this.handleInputWithIndex('deleteCurrentPipeline', {});
} else {
this.snackbar = true;
}