Remove name when loading ove file [SCI-9169] (#6165)

This commit is contained in:
wandji 2023-09-07 16:19:09 +01:00 committed by GitHub
parent 5a4930e90f
commit 8e4dbbac58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -104,7 +104,7 @@
loadFile() {
fetch(this.fileUrl).then((response) => response.json()).then(
(json) => this.editor.updateEditor(
{ sequenceData: { ...json, name: this.sequenceName } }
{ sequenceData: json }
)
);
},