Commit 3fcea45c authored by George Tsiolis's avatar George Tsiolis Committed by Florie Guibert

Remove more scoped labels documentation link instances

parent 51eb28ac
...@@ -113,9 +113,6 @@ export default Vue.extend({ ...@@ -113,9 +113,6 @@ export default Vue.extend({
// eslint-disable-next-line @gitlab/require-i18n-strings // eslint-disable-next-line @gitlab/require-i18n-strings
return `boards.${this.boardId}.${this.list.type}.${this.list.id}`; return `boards.${this.boardId}.${this.list.type}.${this.list.id}`;
}, },
helpLink() {
return boardsStore.scopedLabels.helpLink;
},
}, },
watch: { watch: {
filter: { filter: {
......
...@@ -113,9 +113,6 @@ export default { ...@@ -113,9 +113,6 @@ export default {
// eslint-disable-next-line @gitlab/require-i18n-strings // eslint-disable-next-line @gitlab/require-i18n-strings
return `boards.${this.boardId}.${this.list.type}.${this.list.id}`; return `boards.${this.boardId}.${this.list.type}.${this.list.id}`;
}, },
helpLink() {
return boardsStore.scopedLabels.helpLink;
},
}, },
watch: { watch: {
filter: { filter: {
...@@ -286,7 +283,6 @@ export default { ...@@ -286,7 +283,6 @@ export default {
:background-color="list.label.color" :background-color="list.label.color"
:description="list.label.description" :description="list.label.description"
:scoped="showScopedLabels(list.label)" :scoped="showScopedLabels(list.label)"
:scoped-labels-documentation-link="helpLink"
:size="!list.isExpanded ? 'sm' : ''" :size="!list.isExpanded ? 'sm' : ''"
:title="list.label.title" :title="list.label.title"
tooltip-placement="bottom" tooltip-placement="bottom"
......
...@@ -70,9 +70,6 @@ export default Vue.extend({ ...@@ -70,9 +70,6 @@ export default Vue.extend({
selectedLabels() { selectedLabels() {
return this.hasLabels ? this.issue.labels.map(l => l.title).join(',') : ''; return this.hasLabels ? this.issue.labels.map(l => l.title).join(',') : '';
}, },
helpLink() {
return boardsStore.scopedLabels.helpLink;
},
}, },
watch: { watch: {
detail: { detail: {
......
...@@ -168,9 +168,6 @@ export default { ...@@ -168,9 +168,6 @@ export default {
showScopedLabels(label) { showScopedLabels(label) {
return boardsStoreEE.store.scopedLabels.enabled && isScopedLabel(label); return boardsStoreEE.store.scopedLabels.enabled && isScopedLabel(label);
}, },
helpLink() {
return boardsStoreEE.store.scopedLabels.helpLink;
},
}, },
}; };
</script> </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