mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
feat(editor): Roll out schema view (#5310)
feat(editor): roll out schema view
This commit is contained in:
parent
07b941a043
commit
2b1f15150f
|
@ -657,7 +657,7 @@ export default mixins(externalHooks, genericHelpers, nodeHelpers, pinData).exten
|
|||
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' });
|
||||
}
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ export const useNDVStore = defineStore(STORES.NDV, {
|
|||
mainPanelDimensions: {},
|
||||
sessionId: '',
|
||||
input: {
|
||||
displayMode: window.posthog?.isFeatureEnabled?.('schema-view') ? 'schema' : 'table',
|
||||
displayMode: 'schema',
|
||||
nodeName: undefined,
|
||||
run: undefined,
|
||||
branch: undefined,
|
||||
|
|
Loading…
Reference in a new issue