refactor(editor): Clean up feature flag for the log view (#15606)

This commit is contained in:
Suguru Inoue
2025-06-10 10:15:22 +02:00
committed by GitHub
parent 25567f6f0e
commit d68a776e5c
69 changed files with 2402 additions and 3323 deletions

View File

@@ -285,13 +285,4 @@ export const schema = {
env: 'N8N_PROXY_HOPS',
doc: 'Number of reverse-proxies n8n is running behind',
},
logs_view: {
enabled: {
format: Boolean,
default: true,
env: 'N8N_ENABLE_LOGS_VIEW',
doc: 'Temporary env variable to enable logs view',
},
},
};

View File

@@ -253,9 +253,6 @@ export class FrontendService {
dashboard: false,
dateRanges: [],
},
logsView: {
enabled: false,
},
evaluation: {
quota: this.licenseState.getMaxWorkflowsWithEvaluations(),
},
@@ -396,8 +393,6 @@ export class FrontendService {
this.settings.folders.enabled = this.license.isFoldersEnabled();
this.settings.logsView.enabled = config.get('logs_view.enabled');
// Refresh evaluation settings
this.settings.evaluation.quota = this.licenseState.getMaxWorkflowsWithEvaluations();