mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-11-09 16:01:30 +08:00
Merge pull request #8913 from andrej-scinote/aj_SCI_12416
Fix do not save table if task is in view mode [SCI-12416]
This commit is contained in:
commit
803e37c416
1 changed files with 1 additions and 1 deletions
|
|
@ -558,7 +558,7 @@ export default {
|
|||
const index = this.elements.findIndex((e) => e.id === element.id);
|
||||
this.elements[index].isNew = false;
|
||||
|
||||
if (skipRequest) {
|
||||
if (skipRequest || !element.attributes.orderable?.urls?.update_url) {
|
||||
this.elements[index].attributes.orderable = element.attributes.orderable;
|
||||
this.$emit('resultUpdated');
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue