mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
refactor(editor): Clean up feature flag for the log view (#15606)
This commit is contained in:
@@ -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',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user