added checkTelemetry call in inputCount computed prop

This commit is contained in:
Joel McKinnon 2020-04-01 12:15:02 -07:00
parent 2a1f9fd063
commit 2edfeaa606

View File

@ -172,7 +172,7 @@ export default {
}
}
}
// this.updateMetadataOptions();
this.checkTelemetry();
return inputCount;
}
},
@ -287,7 +287,9 @@ export default {
}
},
persist() {
this.$emit('persist', this.criterion);
if (this.criterion.telemetry && this.criterion.metadata !== '' && this.criterion.operation !== '') {
this.$emit('persist', this.criterion);
}
}
}
};