mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
fix(editor): Issue with JSON editor getting cut off (#9000)
This commit is contained in:
parent
4619dec285
commit
4668db20fb
|
@ -22,7 +22,7 @@ export class NDV extends BasePage {
|
||||||
this.getters.outputPanel().findChildByTestId('ndv-run-data-display-mode').first(),
|
this.getters.outputPanel().findChildByTestId('ndv-run-data-display-mode').first(),
|
||||||
pinDataButton: () => cy.getByTestId('ndv-pin-data'),
|
pinDataButton: () => cy.getByTestId('ndv-pin-data'),
|
||||||
editPinnedDataButton: () => cy.getByTestId('ndv-edit-pinned-data'),
|
editPinnedDataButton: () => cy.getByTestId('ndv-edit-pinned-data'),
|
||||||
pinnedDataEditor: () => this.getters.outputPanel().find('.cm-editor .cm-scroller'),
|
pinnedDataEditor: () => this.getters.outputPanel().find('.cm-editor .cm-scroller .cm-content'),
|
||||||
runDataPaneHeader: () => cy.getByTestId('run-data-pane-header'),
|
runDataPaneHeader: () => cy.getByTestId('run-data-pane-header'),
|
||||||
nodeOutputHint: () => cy.getByTestId('ndv-output-run-node-hint'),
|
nodeOutputHint: () => cy.getByTestId('ndv-output-run-node-hint'),
|
||||||
savePinnedDataButton: () =>
|
savePinnedDataButton: () =>
|
||||||
|
|
|
@ -218,6 +218,7 @@
|
||||||
<JsonEditor
|
<JsonEditor
|
||||||
:model-value="editMode.value"
|
:model-value="editMode.value"
|
||||||
@update:model-value="ndvStore.setOutputPanelEditModeValue($event)"
|
@update:model-value="ndvStore.setOutputPanelEditModeValue($event)"
|
||||||
|
:fill-parent="true"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div :class="$style.editModeFooter">
|
<div :class="$style.editModeFooter">
|
||||||
|
|
Loading…
Reference in a new issue