Commit d8c55b7d authored by Sarah GP's avatar Sarah GP

Generate and add translations

parent d5147ac8
...@@ -3,10 +3,7 @@ import { GlAlert } from '@gitlab/ui'; ...@@ -3,10 +3,7 @@ import { GlAlert } from '@gitlab/ui';
import axios from '~/lib/utils/axios_utils'; import axios from '~/lib/utils/axios_utils';
export default { export default {
<<<<<<< HEAD
// eslint-disable-next-line @gitlab/require-i18n-strings // eslint-disable-next-line @gitlab/require-i18n-strings
=======
>>>>>>> Add DAG scaffolding
name: 'Dag', name: 'Dag',
components: { components: {
GlAlert, GlAlert,
...@@ -23,7 +20,6 @@ export default { ...@@ -23,7 +20,6 @@ export default {
showFailureAlert: false, showFailureAlert: false,
}; };
}, },
<<<<<<< HEAD
computed: { computed: {
shouldDisplayGraph() { shouldDisplayGraph() {
return !this.showFailureAlert; return !this.showFailureAlert;
...@@ -31,11 +27,6 @@ export default { ...@@ -31,11 +27,6 @@ export default {
}, },
mounted() { mounted() {
const { drawGraph, reportFailure } = this; const { drawGraph, reportFailure } = this;
=======
mounted() {
const drawGraph = this.drawGraph;
const reportFailure = this.reportFailure;
>>>>>>> Add DAG scaffolding
if (!this.graphUrl) { if (!this.graphUrl) {
reportFailure(); reportFailure();
...@@ -49,14 +40,11 @@ export default { ...@@ -49,14 +40,11 @@ export default {
}) })
.catch(reportFailure); .catch(reportFailure);
}, },
<<<<<<< HEAD
=======
computed: { computed: {
shouldDisplayGraph() { shouldDisplayGraph() {
return !this.showFailureAlert; return !this.showFailureAlert;
}, },
}, },
>>>>>>> Add DAG scaffolding
methods: { methods: {
drawGraph(data) { drawGraph(data) {
return data; return data;
......
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