Skip to content
Snippets Groups Projects
Commit caf4c140 authored by Andrew Fontaine's avatar Andrew Fontaine
Browse files

Remove Duplicate Keys in Environment Table

A bad merge accidentally duplicated the `computed` property on the
component.
parent b15017a1
No related merge requests found
......@@ -70,15 +70,6 @@ export default {
);
},
},
computed: {
sortedEnvironments() {
return this.sortEnvironments(this.environments).map(env =>
this.shouldRenderFolderContent(env)
? { ...env, children: this.sortEnvironments(env.children) }
: env,
);
},
},
methods: {
folderUrl(model) {
return `${window.location.pathname}/folders/${model.folderName}`;
......
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