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:
artoscinote 2023-02-15 10:43:44 +01:00 committed by GitHub
commit e58f0fc1f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}
}
}