fix: Fix issues with nodes missing in nodes panel (#5599)
* fix: Fix issues with nodes missing in nodes panel * fix: fix logic for deteriming app category * chore: add comment * chore: remove sort
This commit is contained in:
@@ -105,7 +105,10 @@ const displayName = computed<any>(() => {
|
||||
|
||||
return instance?.proxy.$locale.headerText({
|
||||
key: `headers.${shortNodeType}.displayName`,
|
||||
fallback: props.allowActions ? displayName.replace('Trigger', '') : displayName,
|
||||
fallback:
|
||||
props.allowActions && props.nodeType.actions?.length
|
||||
? displayName.replace('Trigger', '')
|
||||
: displayName,
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user