Fixed issues in app sdk for liquid

This commit is contained in:
frikky
2021-08-11 13:42:44 +02:00
parent e8b7b2b444
commit 7f65c98f94
4 changed files with 22 additions and 7 deletions
+2 -2
View File
@@ -1067,8 +1067,8 @@ const Workflows = (props) => {
}
var parsedName = data.name
if (parsedName !== undefined && parsedName !== null && parsedName.length > 22) {
parsedName = parsedName.slice(0,23)+".."
if (parsedName !== undefined && parsedName !== null && parsedName.length > 20) {
parsedName = parsedName.slice(0,21)+".."
}
const actions = data.actions !== null ? data.actions.length : 0