fix(dashboard): larger JSON metadata editor for better editing UX (#38728) (#38745)

This commit is contained in:
Mayank Aggarwal
2026-03-25 21:55:47 +05:30
committed by GitHub
parent ba5820b088
commit 403f4ad78c
2 changed files with 3 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ export const MODAL_LARGE_WIDTH = 900;
const StyledModal = styled(Modal)`
.ant-modal-body {
max-height: 60vh;
max-height: 80vh;
height: auto;
overflow-y: auto;
padding: 0;
@@ -130,6 +130,7 @@ export function StandardModal({
show={show}
width={`${width}px`}
wrapProps={wrapProps}
centered={centered}
title={
icon ? (
<ModalTitleWithIcon

View File

@@ -84,7 +84,7 @@ const AdvancedSection = ({
tabSize={2}
wordWrap
width="100%"
height="200px"
height="60vh"
annotations={toEditorAnnotations(jsonAnnotations)}
/>
</ModalFormField>