Skip to content

Commit

Permalink
fix(editor): Issue with JSON editor getting cut off (#9000)
Browse files Browse the repository at this point in the history
  • Loading branch information
RicardoE105 authored and netroy committed Apr 3, 2024
1 parent 4619dec commit 4668db2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/pages/ndv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class NDV extends BasePage {
this.getters.outputPanel().findChildByTestId('ndv-run-data-display-mode').first(),
pinDataButton: () => cy.getByTestId('ndv-pin-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'),
nodeOutputHint: () => cy.getByTestId('ndv-output-run-node-hint'),
savePinnedDataButton: () =>
Expand Down
1 change: 1 addition & 0 deletions packages/editor-ui/src/components/RunData.vue
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@
<JsonEditor
:model-value="editMode.value"
@update:model-value="ndvStore.setOutputPanelEditModeValue($event)"
:fill-parent="true"
/>
</div>
<div :class="$style.editModeFooter">
Expand Down

0 comments on commit 4668db2

Please sign in to comment.