Skip to content
Snippets Groups Projects
Commit 4f83ba05 authored by Lene Wasskog's avatar Lene Wasskog
Browse files

fix: Ensure editable form when cloning timeseries which contains observations

The observations are NOT cloned, only the
timeseries values
parent 0aaecd92
No related branches found
No related tags found
No related merge requests found
...@@ -449,7 +449,7 @@ export default { ...@@ -449,7 +449,7 @@ export default {
}); });
}, },
uneditable() { uneditable() {
return this.observations && this.observations.length > 0; return !this.createClone && this.observations && this.observations.length > 0;
} }
}, },
mounted() { mounted() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment