mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat(editor): Roll out schema view (#5310)
feat(editor): roll out schema view
This commit is contained in:
@@ -657,7 +657,7 @@ export default mixins(externalHooks, genericHelpers, nodeHelpers, pinData).exten
|
|||||||
defaults.push({ label: this.$locale.baseText('runData.binary'), value: 'binary' });
|
defaults.push({ label: this.$locale.baseText('runData.binary'), value: 'binary' });
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.isPaneTypeInput && window.posthog?.isFeatureEnabled?.('schema-view')) {
|
if (this.isPaneTypeInput) {
|
||||||
defaults.unshift({ label: this.$locale.baseText('runData.schema'), value: 'schema' });
|
defaults.unshift({ label: this.$locale.baseText('runData.schema'), value: 'schema' });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ export const useNDVStore = defineStore(STORES.NDV, {
|
|||||||
mainPanelDimensions: {},
|
mainPanelDimensions: {},
|
||||||
sessionId: '',
|
sessionId: '',
|
||||||
input: {
|
input: {
|
||||||
displayMode: window.posthog?.isFeatureEnabled?.('schema-view') ? 'schema' : 'table',
|
displayMode: 'schema',
|
||||||
nodeName: undefined,
|
nodeName: undefined,
|
||||||
run: undefined,
|
run: undefined,
|
||||||
branch: undefined,
|
branch: undefined,
|
||||||
|
|||||||
Reference in New Issue
Block a user