Commit ea181f70 authored by Simon Knox's avatar Simon Knox

fix lint

parent 7b93b8ae
<script>
/* global BoardService */
/* global Flash */
import Vue from 'vue';
import PopupDialog from '~/vue_shared/components/popup_dialog.vue';
import BoardMilestoneSelect from './milestone_select.vue';
import BoardWeightSelect from './weight_select.vue';
......@@ -120,7 +120,7 @@ export default {
},
weightsArray() {
return JSON.parse(this.weights);
}
},
},
methods: {
submit() {
......@@ -131,7 +131,7 @@ export default {
gl.utils.visitUrl(Store.rootPath);
})
.catch(() => {
Flash('Failed to delete board. Please try again.')
Flash('Failed to delete board. Please try again.');
this.submitDisabled = false;
});
} else {
......@@ -141,7 +141,7 @@ export default {
gl.utils.visitUrl(`${Store.rootPath}/${data.id}`);
})
.catch(() => {
Flash('Unable to save your changes. Please try again.')
Flash('Unable to save your changes. Please try again.');
});
}
},
......
<script>
/* global LabelsSelect */
/* global ListLabel */
import loadingIcon from '~/vue_shared/components/loading_icon.vue';
import eventHub from '../eventhub';
export default {
props: {
......@@ -32,7 +32,7 @@ export default {
},
},
mounted() {
new LabelsSelect(this.$refs.dropdownButton, {
this.labelsDropdown = new LabelsSelect(this.$refs.dropdownButton, {
handleClick: this.handleClick,
});
},
......@@ -58,7 +58,7 @@ export default {
labels = labels.filter(selected => selected.id !== label.id);
this.board.labels = labels;
}
}
},
},
};
</script>
......
......@@ -37,12 +37,12 @@ export default {
return this.board.milestone_id;
},
milestoneTitleClass() {
return this.milestoneTitle === ANY_MILESTONE ? 'text-secondary': 'bold';
return this.milestoneTitle === ANY_MILESTONE ? 'text-secondary' : 'bold';
},
selected() {
if (this.noMilestone) return NO_MILESTONE;
return this.board.milestone ? this.board.milestone.name : '';
}
},
},
methods: {
selectMilestone(milestone) {
......@@ -60,7 +60,7 @@ export default {
},
},
mounted() {
new MilestoneSelect(null, this.$refs.dropdownButton, {
this.milestoneDropdown = new MilestoneSelect(null, this.$refs.dropdownButton, {
handleClick: this.selectMilestone,
});
},
......
......@@ -69,7 +69,7 @@ export default {
},
methods: {
initSelect() {
new UsersSelect(null, this.$refs.dropdown, {
this.userDropdown = new UsersSelect(null, this.$refs.dropdown, {
handleClick: this.selectUser,
});
},
......
......@@ -3,7 +3,6 @@
import '~/weight_select';
import loadingIcon from '~/vue_shared/components/loading_icon.vue';
import eventHub from '../eventhub';
const ANY_WEIGHT = 'Any Weight';
const NO_WEIGHT = 'No Weight';
......@@ -45,9 +44,9 @@ export default {
},
valueText() {
if (this.value > 0) return this.value;
if (this.value == 0) return NO_WEIGHT;
if (this.value === 0) return NO_WEIGHT;
return ANY_WEIGHT;
}
},
},
methods: {
selectWeight(weight) {
......@@ -61,15 +60,15 @@ export default {
return 0;
}
return -1;
}
},
},
mounted() {
new WeightSelect(this.$refs.dropdownButton, {
this.weightDropdown = new WeightSelect(this.$refs.dropdownButton, {
handleClick: this.selectWeight,
selected: this.value,
fieldName: this.fieldName,
});
}
},
};
</script>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment