Commit 4e728568 authored by pburdette's avatar pburdette

Change string into i18n

parent 11f68caf
<script> <script>
import LinkedPipeline from './linked_pipeline.vue'; import LinkedPipeline from './linked_pipeline.vue';
import { __ } from '~/locale';
export default { export default {
components: { components: {
...@@ -28,7 +29,7 @@ export default { ...@@ -28,7 +29,7 @@ export default {
return `graph-position-${this.graphPosition} ${positionValues[this.graphPosition]}`; return `graph-position-${this.graphPosition} ${positionValues[this.graphPosition]}`;
}, },
isUpstream() { isUpstream() {
return this.columnTitle === 'Upstream'; return this.columnTitle === __('Upstream');
}, },
}, },
}; };
......
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