mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(editor): Fix folders UI for different plans (no-changelog) (#14159)
This commit is contained in:
committed by
GitHub
parent
ca01236dd1
commit
1ff3049ffb
@@ -61,7 +61,10 @@ const showSettings = computed(
|
||||
const homeProject = computed(() => projectsStore.currentProject ?? projectsStore.personalProject);
|
||||
|
||||
const showFolders = computed(() => {
|
||||
return settingsStore.isFoldersFeatureEnabled && route.name !== VIEWS.WORKFLOWS;
|
||||
return (
|
||||
settingsStore.isFoldersFeatureEnabled &&
|
||||
[VIEWS.PROJECTS_WORKFLOWS, VIEWS.PROJECTS_FOLDERS].includes(route.name as VIEWS)
|
||||
);
|
||||
});
|
||||
|
||||
const ACTION_TYPES = {
|
||||
|
||||
Reference in New Issue
Block a user