Fixes linting issues

This commit is contained in:
Joshi 2020-03-26 23:00:59 -07:00
parent 03a690a158
commit 0a1959df38

View File

@ -120,14 +120,6 @@ export default {
inputTypes: INPUT_TYPES
}
},
watch: {
telemetry: {
handler(newTelemetry, oldTelemetry) {
this.checkTelemetry();
},
deep: true
}
},
computed: {
setRowLabel: function () {
let operator = this.trigger === 'all' ? 'and ': 'or ';
@ -155,6 +147,14 @@ export default {
return type;
}
},
watch: {
telemetry: {
handler(newTelemetry, oldTelemetry) {
this.checkTelemetry();
},
deep: true
}
},
mounted() {
this.updateMetadataOptions();
},