mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 19:11:13 +00:00
feat: Update Workflow class usage on the Frontend for better performance (no-changelog) (#17680)
This commit is contained in:
@@ -78,9 +78,12 @@ const hideContent = computed(() => {
|
||||
}
|
||||
|
||||
if (node.value) {
|
||||
const hideContentValue = workflowHelpers
|
||||
.getCurrentWorkflow()
|
||||
.expression.getSimpleParameterValue(node.value, hideContent, 'internal', {});
|
||||
const hideContentValue = workflowsStore.workflowObject.expression.getSimpleParameterValue(
|
||||
node.value,
|
||||
hideContent,
|
||||
'internal',
|
||||
{},
|
||||
);
|
||||
|
||||
if (typeof hideContentValue === 'boolean') {
|
||||
return hideContentValue;
|
||||
|
||||
Reference in New Issue
Block a user