mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-26 17:51:13 +08:00
Merge pull request #4912 from G-Chubinidze/gc_SCI_7195
Text block on step without title in rearrange modal [SCI-7195]
This commit is contained in:
commit
e58f0fc1f2
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@
|
|||
return str.length > 56 ? str.slice(0, 56) + "..." : str;
|
||||
},
|
||||
nameWithFallbacks(item) {
|
||||
return item.attributes.name || this.getTitle(item);
|
||||
return this.getTitle(item) || item.attributes.name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue