Skip to content

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

Merged
hainenber merged 4 commits into
apache:masterfrom
Mayankaggarwal8055:fix/dashboard-json-editor
Mar 25, 2026
Merged

fix(dashboard): larger JSON metadata editor for better editing UX (#38728)#38745
hainenber merged 4 commits into
apache:masterfrom
Mayankaggarwal8055:fix/dashboard-json-editor

Conversation

@Mayankaggarwal8055
Copy link
Copy Markdown
Contributor

@Mayankaggarwal8055 Mayankaggarwal8055 commented Mar 19, 2026

User description

Improves the usability of the JSON metadata editor in the dashboard properties modal.

Currently, the editor has a fixed height (200px), making it difficult to work with larger JSON configurations. Additionally, the modal itself is not resizable, further limiting usability.

CHANGES

  • Enabled resizable and draggable behavior for the PropertiesModal
  • Updated StandardModal to support resizable and draggable props
  • Removed fixed height constraint (200px) from the JSON metadata editor
  • Made the editor responsive using flexible height

BEFORE

  • Fixed-height editor (200px)
  • Difficult to edit large JSON
  • Modal not resizable

AFTER

  • Resizable modal
  • Responsive JSON editor
  • Improved editing experience for larger metadata

TESTING

  • Verified modal resizing works correctly
  • Confirmed JSON editor expands with modal
  • Ensured no layout breakage or nested scroll issues

Fixes #38728


CodeAnt-AI Description

Make the dashboard JSON editor usable in a larger modal

What Changed

  • The dashboard JSON metadata editor now opens taller, so larger JSON blocks are easier to view and edit
  • The properties modal can use more of the screen height, reducing extra scrolling while editing
  • The modal now stays centered when shown

Impact

✅ Easier editing of large dashboard JSON
✅ Fewer scroll interruptions in dashboard settings
✅ More usable properties dialog

💡 Usage Guide

Checking Your Pull Request

Every time you make a pull request, our system automatically looks through it. We check for security issues, mistakes in how you're setting up your infrastructure, and common code problems. We do this to make sure your changes are solid and won't cause any trouble later.

Talking to CodeAnt AI

Got a question or need a hand with something in your pull request? You can easily get in touch with CodeAnt AI right here. Just type the following in a comment on your pull request, and replace "Your question here" with whatever you want to ask:

@codeant-ai ask: Your question here

This lets you have a chat with CodeAnt AI about your pull request, making it easier to understand and improve your code.

Example

@codeant-ai ask: Can you suggest a safer alternative to storing this secret?

Preserve Org Learnings with CodeAnt

You can record team preferences so CodeAnt AI applies them in future reviews. Reply directly to the specific CodeAnt AI suggestion (in the same thread) and replace "Your feedback here" with your input:

@codeant-ai: Your feedback here

This helps CodeAnt AI learn and adapt to your team's coding style and standards.

Example

@codeant-ai: Do not flag unused imports.

Retrigger review

Ask CodeAnt AI to review the PR again, by typing:

@codeant-ai: review

Check Your Repository Health

To analyze the health of your code repository, visit our dashboard at https://app.codeant.ai. This tool helps you identify potential issues and areas for improvement in your codebase, ensuring your repository maintains high standards of code health.

@bito-code-review
Copy link
Copy Markdown
Contributor

bito-code-review Bot commented Mar 19, 2026

Code Review Agent Run #06c616

Actionable Suggestions - 0
Additional Suggestions - 1
  • superset-frontend/src/dashboard/components/PropertiesModal/sections/AdvancedSection.tsx - 1
    • Inline styles violate antd best practices · Line 78-78
      The use of inline styles on the wrapper div violates the guideline to avoid custom CSS and follow antd best practices. Consider using a styled component instead, as done elsewhere in the codebase.
Review Details
  • Files reviewed - 4 · Commit Range: a2e4119..c662236
    • superset-frontend/src/components/Modal/StandardModal.tsx
    • superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx
    • superset-frontend/src/dashboard/components/PropertiesModal/index.tsx
    • superset-frontend/src/dashboard/components/PropertiesModal/sections/AdvancedSection.tsx
  • Files skipped - 0
  • Tools
    • Whispers (Secret Scanner) - ✔︎ Successful
    • Detect-secrets (Secret Scanner) - ✔︎ Successful

Bito Usage Guide

Commands

Type the following command in the pull request comment and save the comment.

  • /review - Manually triggers a full AI review.

  • /pause - Pauses automatic reviews on this pull request.

  • /resume - Resumes automatic reviews.

  • /resolve - Marks all Bito-posted review comments as resolved.

  • /abort - Cancels all in-progress reviews.

Refer to the documentation for additional commands.

Configuration

This repository uses Superset You can customize the agent settings here or contact your Bito workspace admin at evan@preset.io.

Documentation & Help

AI Code Review powered by Bito Logo

@dosubot dosubot Bot added dashboard:editmode Related to te Dashboard edit mode dashboard:properties Related to the properties of the Dashboard labels Mar 19, 2026
@codeant-ai-for-open-source codeant-ai-for-open-source Bot added the size:S This PR changes 10-29 lines, ignoring generated files label Mar 19, 2026
@codeant-ai-for-open-source
Copy link
Copy Markdown
Contributor

Sequence Diagram

This PR makes the dashboard properties modal resizable and draggable by passing new modal capabilities through StandardModal. It also makes the JSON metadata editor expand with the modal so larger configurations are easier to edit.

sequenceDiagram
    participant User
    participant PropertiesModal
    participant StandardModal
    participant Modal
    participant JsonEditor

    User->>PropertiesModal: Open dashboard properties
    PropertiesModal->>StandardModal: Render modal with resizable draggable and width 900
    StandardModal->>Modal: Apply resizable draggable and larger body height
    Modal-->>User: Show movable and resizable modal
    User->>Modal: Resize modal for more space
    Modal->>JsonEditor: Expand editor container and fill available height
    JsonEditor-->>User: Display larger JSON editing area
Loading

Generated by CodeAnt AI

const StyledModal = styled(Modal)`
.ant-modal-body {
max-height: 60vh;
max-height: 80vh;
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggestion: The fixed max-height: 80vh on the modal body breaks the new resizable behavior: once users resize past that height, the body stops growing and leaves unusable empty space, so large JSON editors still cannot fully expand. Make the max-height conditional so it is only applied when the modal is not resizable. [logic error]

Severity Level: Critical 🚨
- ⚠️ Dashboard properties modal wastes space when resized taller.
- ⚠️ JSON metadata editor expansion is capped unexpectedly.
Suggested change
max-height: 80vh;
max-height: ${({ resizable }) => (resizable ? 'none' : '80vh')};
Steps of Reproduction ✅
1. Open a dashboard in edit mode and click "Edit properties"; this action is wired in
`superset-frontend/src/dashboard/components/Header/useHeaderActionsDropdownMenu.tsx:93-95`
(`MenuKeys.EditProperties -> showPropertiesModal()`), which toggles modal state in
`superset-frontend/src/dashboard/components/Header/index.tsx:512-513`.

2. Confirm the modal render path: `Header/index.tsx:844-850` conditionally renders
`<PropertiesModal ... show={showingPropertiesModal} />`, and
`superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:621-631` passes
`resizable` and `draggable` to `<StandardModal>`.

3. In `superset-frontend/src/components/Modal/StandardModal.tsx:54-56`, `.ant-modal-body`
is capped with `max-height: 80vh`; meanwhile core resizable logic sets body fill-height in
`superset-frontend/packages/superset-ui-core/src/components/Modal/Modal.tsx:175-179`.

4. Drag-resize the properties modal vertically beyond ~80vh; the body stops growing
(capped), leaving unused space while advanced JSON editor container
(`superset-frontend/src/dashboard/components/PropertiesModal/sections/AdvancedSection.tsx:78-89`)
cannot fully expand with modal height.
Prompt for AI Agent 🤖
This is a comment left during a code review.

**Path:** superset-frontend/src/components/Modal/StandardModal.tsx
**Line:** 55:55
**Comment:**
	*Logic Error: The fixed `max-height: 80vh` on the modal body breaks the new resizable behavior: once users resize past that height, the body stops growing and leaves unusable empty space, so large JSON editors still cannot fully expand. Make the max-height conditional so it is only applied when the modal is not resizable.

Validate the correctness of the flagged issue. If correct, How can I resolve this? If you propose a fix, implement it and please make it concise.
👍 | 👎

Comment on lines +629 to +630
resizable
draggable
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggestion: Enabling both drag/resize on this modal changes core modal behavior to remove the backdrop mask, so users can interact with the dashboard behind an open edit form and trigger conflicting state changes while unsaved properties are being edited. Keep this modal non-draggable/non-resizable to preserve modal isolation. [logic error]

Severity Level: Major ⚠️
- ⚠️ Dashboard header actions clickable during open properties modal.
- ⚠️ Unsaved properties can conflict with background dashboard edits.
Suggested change
resizable
draggable
Steps of Reproduction ✅
1. Enter dashboard edit mode, then open the header actions menu and click **Edit
properties**; this executes `showPropertiesModal()` in
`superset-frontend/src/dashboard/components/Header/useHeaderActionsDropdownMenu.tsx:93-95`.

2. `showPropertiesModal` sets state in
`superset-frontend/src/dashboard/components/Header/index.tsx:512-514`, then
`PropertiesModal` is rendered at `Header/index.tsx:844-850`.

3. The modal is created with `resizable` and `draggable` in
`superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:629-631`.

4. Core modal logic computes `const shouldShowMask = !(resizable || draggable)` at
`superset-frontend/packages/superset-ui-core/src/components/Modal/Modal.tsx:280` and
applies `mask={shouldShowMask}` at `Modal.tsx:360`, so mask becomes `false`.

5. While the properties modal stays open, click background dashboard controls like
`Discard`/`Save` (`superset-frontend/src/dashboard/components/Header/index.tsx:724-737`);
these remain clickable because no mask blocks background interaction.

6. Observe conflicting edit flow: background dashboard actions run while properties form
is still unsaved/open, breaking modal isolation.
Prompt for AI Agent 🤖
This is a comment left during a code review.

**Path:** superset-frontend/src/dashboard/components/PropertiesModal/index.tsx
**Line:** 629:630
**Comment:**
	*Logic Error: Enabling both drag/resize on this modal changes core modal behavior to remove the backdrop mask, so users can interact with the dashboard behind an open edit form and trigger conflicting state changes while unsaved properties are being edited. Keep this modal non-draggable/non-resizable to preserve modal isolation.

Validate the correctness of the flagged issue. If correct, How can I resolve this? If you propose a fix, implement it and please make it concise.
👍 | 👎

@Mayankaggarwal8055 Mayankaggarwal8055 force-pushed the fix/dashboard-json-editor branch from c662236 to 9bd75a6 Compare March 19, 2026 15:30
@Mayankaggarwal8055 Mayankaggarwal8055 changed the title Fix/dashboard json editor fix(dashboard): make JSON metadata editor resizable (#38728) Mar 19, 2026
Comment thread superset-frontend/src/components/Modal/StandardModal.tsx Outdated
@bito-code-review
Copy link
Copy Markdown
Contributor

bito-code-review Bot commented Mar 19, 2026

Code Review Agent Run #ed4884

Actionable Suggestions - 0
Additional Suggestions - 1
  • superset-frontend/src/dashboard/components/PropertiesModal/sections/AdvancedSection.tsx - 1
    • Custom inline styling violates guidelines · Line 78-91
      The addition of inline styles with a hardcoded '60vh' height violates the project's guideline to avoid custom CSS and follow antd best practices. This could also cause inconsistent modal sizing across devices, as vh units may not behave predictably in fixed-position modals. Consider using responsive height props from the EditorHost API or theme-based values.
Review Details
  • Files reviewed - 3 · Commit Range: 9bd75a6..4192515
    • superset-frontend/src/components/Modal/StandardModal.tsx
    • superset-frontend/src/dashboard/components/PropertiesModal/index.tsx
    • superset-frontend/src/dashboard/components/PropertiesModal/sections/AdvancedSection.tsx
  • Files skipped - 0
  • Tools
    • Whispers (Secret Scanner) - ✔︎ Successful
    • Detect-secrets (Secret Scanner) - ✔︎ Successful

Bito Usage Guide

Commands

Type the following command in the pull request comment and save the comment.

  • /review - Manually triggers a full AI review.

  • /pause - Pauses automatic reviews on this pull request.

  • /resume - Resumes automatic reviews.

  • /resolve - Marks all Bito-posted review comments as resolved.

  • /abort - Cancels all in-progress reviews.

Refer to the documentation for additional commands.

Configuration

This repository uses Superset You can customize the agent settings here or contact your Bito workspace admin at evan@preset.io.

Documentation & Help

AI Code Review powered by Bito Logo

@Mayankaggarwal8055 Mayankaggarwal8055 force-pushed the fix/dashboard-json-editor branch from e1a03a8 to 4192515 Compare March 19, 2026 16:45
@Mayankaggarwal8055
Copy link
Copy Markdown
Contributor Author

Thanks for the feedback!

I've pushed updates addressing the comments:

  • Removed the duplicate resizable handling
  • Fixed modal max-height behavior
  • Simplified the JSON editor sizing and removed the extra wrapper

Please take another look when you get a chance.

@Mayankaggarwal8055 Mayankaggarwal8055 force-pushed the fix/dashboard-json-editor branch from 75d1ded to 25a1a2d Compare March 19, 2026 17:44
Copy link
Copy Markdown
Contributor

@bito-code-review bito-code-review Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review Agent Run #c9868a

Actionable Suggestions - 1
  • superset-frontend/src/components/Modal/StandardModal.tsx - 1
Review Details
  • Files reviewed - 2 · Commit Range: 4192515..25a1a2d
    • superset-frontend/src/components/Modal/StandardModal.tsx
    • superset-frontend/src/dashboard/components/PropertiesModal/sections/AdvancedSection.tsx
  • Files skipped - 0
  • Tools
    • Whispers (Secret Scanner) - ✔︎ Successful
    • Detect-secrets (Secret Scanner) - ✔︎ Successful

Bito Usage Guide

Commands

Type the following command in the pull request comment and save the comment.

  • /review - Manually triggers a full AI review.

  • /pause - Pauses automatic reviews on this pull request.

  • /resume - Resumes automatic reviews.

  • /resolve - Marks all Bito-posted review comments as resolved.

  • /abort - Cancels all in-progress reviews.

Refer to the documentation for additional commands.

Configuration

This repository uses Superset You can customize the agent settings here or contact your Bito workspace admin at evan@preset.io.

Documentation & Help

AI Code Review powered by Bito Logo

maskClosable?: boolean;
wrapProps?: object;
contentLoading?: boolean;
resizable?: boolean;
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing resizable prop forwarding

The resizable prop has been added to the StandardModalProps interface, but it's not being passed to the underlying Modal component. Without passing resizable={resizable}, the modal will not be resizable even when the prop is set to true. The Modal component from @superset-ui/core supports resizing via the re-resizable library.

Code Review Run #c9868a


Should Bito avoid suggestions like this for future reviews? (Manage Rules)

  • Yes, avoid them

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you please follow up with Bito's review as well?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The review suggests making max-height conditional with 80vh for non-resizable modals to fix the resizable behavior issue. The PR already applies conditional logic but uses 60vh; updating to 80vh matches the suggestion.

superset-frontend/src/components/Modal/StandardModal.tsx

const StyledModal = styled(Modal)<{ $resizable?: boolean }>`
  .ant-modal-body {
    max-height: ${({ $resizable }) => ($resizable ? 'none' : '80vh')};
    height: auto;
    overflow-y: auto;
    padding: 0;

@Mayankaggarwal8055 Mayankaggarwal8055 force-pushed the fix/dashboard-json-editor branch from 25a1a2d to a190c58 Compare March 20, 2026 12:30
@pull-request-size pull-request-size Bot added size/L and removed size/M labels Mar 20, 2026
@codeant-ai-for-open-source codeant-ai-for-open-source Bot added size:M This PR changes 30-99 lines, ignoring generated files and removed size:S This PR changes 10-29 lines, ignoring generated files labels Mar 20, 2026
@netlify
Copy link
Copy Markdown

netlify Bot commented Mar 20, 2026

Deploy Preview for superset-docs-preview ready!

Name Link
🔨 Latest commit 67c6384
🔍 Latest deploy log https://app.netlify.com/projects/superset-docs-preview/deploys/69beab9f915dee00082c2825
😎 Deploy Preview https://deploy-preview-38745--superset-docs-preview.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

title
)
}
$resizable={resizable}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggestion: The resizable flag is only used for styling and is never forwarded to the underlying Modal component, so resize handles and resize behavior are never activated. Pass resizable through to StyledModal to enable the actual modal resizing logic. [logic error]

Severity Level: Critical 🚨
- ⚠️ Dashboard PropertiesModal resize handles never appear.
- ⚠️ Modal.tsx resizable wrapper path never executes.
- ⚠️ Large JSON editing remains constrained to static modal.
Suggested change
$resizable={resizable}
resizable={resizable}
Steps of Reproduction ✅
1. In dashboard header actions, click "Edit properties"; `handleMenuClick` routes
`MenuKeys.EditProperties` to `showPropertiesModal()` at
`superset-frontend/src/dashboard/components/Header/useHeaderActionsDropdownMenu.tsx:34-36`.

2. `showPropertiesModal()` toggles modal state, then `Header` renders `<PropertiesModal
... show={showingPropertiesModal} />` at
`superset-frontend/src/dashboard/components/Header/index.tsx:25-35` (shown in returned JSX
block lines 25-35 of the read section).

3. `PropertiesModal` renders `<StandardModal ... resizable draggable ...>` at
`superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:22-32`, so resize is
expected on this path.

4. In `StandardModal`, only `$resizable={resizable}` is passed
(`superset-frontend/src/components/Modal/StandardModal.tsx:145`), but functional resize
logic in core `Modal` requires `resizable` prop
(`superset-frontend/packages/superset-ui-core/src/components/Modal/Modal.tsx:225,339,346-348`);
result: no `Resizable` wrapper/handles appear, modal cannot be resized.
Prompt for AI Agent 🤖
This is a comment left during a code review.

**Path:** superset-frontend/src/components/Modal/StandardModal.tsx
**Line:** 145:145
**Comment:**
	*Logic Error: The `resizable` flag is only used for styling and is never forwarded to the underlying `Modal` component, so resize handles and resize behavior are never activated. Pass `resizable` through to `StyledModal` to enable the actual modal resizing logic.

Validate the correctness of the flagged issue. If correct, How can I resolve this? If you propose a fix, implement it and please make it concise.
👍 | 👎

show={show}
width={`${width}px`}
wrapProps={wrapProps}
$resizable={resizable}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This wrongly named$resizable attribute is still present.

maskClosable?: boolean;
wrapProps?: object;
contentLoading?: boolean;
resizable?: boolean;
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you please follow up with Bito's review as well?

@codeant-ai-for-open-source codeant-ai-for-open-source Bot added size:XS This PR changes 0-9 lines, ignoring generated files and removed size:M This PR changes 30-99 lines, ignoring generated files labels Mar 21, 2026
show={show}
width={`${width}px`}
wrapProps={wrapProps}
resizable={resizable}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggestion: The centered prop is defined with a default of true but never forwarded to the underlying modal, so dialogs are rendered with the base modal default instead of being centered as intended. [logic error]

Severity Level: Major ⚠️
- ⚠️ StandardModal dialogs ignore intended centered default behavior.
- ⚠️ Modal positioning inconsistent across dashboard and explore flows.
Suggested change
resizable={resizable}
centered={centered}
Steps of Reproduction ✅
1. Open any `StandardModal` consumer (e.g. dashboard properties at
`superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:621`, explore
properties at `superset-frontend/src/explore/components/PropertiesModal/index.tsx:324`,
refresh interval at
`superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:113`).

2. `StandardModal` sets `centered = true` by default in props destructuring at
`superset-frontend/src/components/Modal/StandardModal.tsx:115`.

3. The prop is never forwarded to underlying `Modal` (`StandardModal.tsx:125-136`), so
downstream `Modal` receives `centered` as undefined.

4. Core modal applies `centered={!!centered}` at
`superset-frontend/packages/superset-ui-core/src/components/Modal/Modal.tsx:119`, so
undefined becomes false and dialogs render non-centered.
Prompt for AI Agent 🤖
This is a comment left during a code review.

**Path:** superset-frontend/src/components/Modal/StandardModal.tsx
**Line:** 135:135
**Comment:**
	*Logic Error: The `centered` prop is defined with a default of `true` but never forwarded to the underlying modal, so dialogs are rendered with the base modal default instead of being centered as intended.

Validate the correctness of the flagged issue. If correct, How can I resolve this? If you propose a fix, implement it and please make it concise.
👍 | 👎

@bito-code-review
Copy link
Copy Markdown
Contributor

bito-code-review Bot commented Mar 21, 2026

Code Review Agent Run #4a2c95

Actionable Suggestions - 0
Review Details
  • Files reviewed - 2 · Commit Range: 2d86b12..4884323
    • superset-frontend/src/components/Modal/StandardModal.tsx
    • superset-frontend/src/dashboard/components/PropertiesModal/index.tsx
  • Files skipped - 0
  • Tools
    • Whispers (Secret Scanner) - ✔︎ Successful
    • Detect-secrets (Secret Scanner) - ✔︎ Successful

Bito Usage Guide

Commands

Type the following command in the pull request comment and save the comment.

  • /review - Manually triggers a full AI review.

  • /pause - Pauses automatic reviews on this pull request.

  • /resume - Resumes automatic reviews.

  • /resolve - Marks all Bito-posted review comments as resolved.

  • /abort - Cancels all in-progress reviews.

Refer to the documentation for additional commands.

Configuration

This repository uses Superset You can customize the agent settings here or contact your Bito workspace admin at evan@preset.io.

Documentation & Help

AI Code Review powered by Bito Logo

@bito-code-review
Copy link
Copy Markdown
Contributor

bito-code-review Bot commented Mar 21, 2026

Code Review Agent Run #a1126c

Actionable Suggestions - 0
Review Details
  • Files reviewed - 2 · Commit Range: bfaf3c7..d586e96
    • superset-frontend/src/components/Modal/StandardModal.tsx
    • superset-frontend/src/dashboard/components/PropertiesModal/sections/AdvancedSection.tsx
  • Files skipped - 0
  • Tools
    • Whispers (Secret Scanner) - ✔︎ Successful
    • Detect-secrets (Secret Scanner) - ✔︎ Successful

Bito Usage Guide

Commands

Type the following command in the pull request comment and save the comment.

  • /review - Manually triggers a full AI review.

  • /pause - Pauses automatic reviews on this pull request.

  • /resume - Resumes automatic reviews.

  • /resolve - Marks all Bito-posted review comments as resolved.

  • /abort - Cancels all in-progress reviews.

Refer to the documentation for additional commands.

Configuration

This repository uses Superset You can customize the agent settings here or contact your Bito workspace admin at evan@preset.io.

Documentation & Help

AI Code Review powered by Bito Logo

@Mayankaggarwal8055
Copy link
Copy Markdown
Contributor Author

Hi @hainenber,
I’m not entirely sure why the docker build checks are failing based on my understanding so far.

From what I can see in the logs, it looks like the failures are related to restricted GitHub Actions (like docker/setup-qemu-action, buildx, and login-action) not being allowed for forked PRs.

All the other checks are passing successfully, so I just wanted to confirm — is this expected behavior for external contributors? And should this be ignored, or do maintainers need to trigger these workflows from their side?

Happy to make any changes if I’m missing something here.

@hainenber
Copy link
Copy Markdown
Contributor

hainenber commented Mar 21, 2026

I'm working to getting the CI unblocked. Please stand still until there are new developments.

Edit: CI is unblocked, you can continue. Please also provide Before and After screenshots/videos as evident for your fix, not just this PR but also your others.

@Mayankaggarwal8055
Copy link
Copy Markdown
Contributor Author

Hi @hainenber ,

Thanks for the update earlier — I’ve now added some before/after screenshots to better show the changes.

Before

The JSON metadata editor had a fixed height (~200px)
The modal wasn’t resizable
Working with larger JSON was a bit difficult due to limited space and constant scrolling

After

The modal is now resizable
The JSON editor grows along with the modal
Editing larger configurations feels much more comfortable

Screenshots

Before:
Screenshot 2026-03-24 181134
Screenshot 2026-03-24 181212

After:
Screenshot 2026-03-24 182739
Screenshot 2026-03-24 182802

I tested resizing and the editor adjusts properly without any layout issues.

Let me know if you’d like me to add a short video as well.

@hainenber
Copy link
Copy Markdown
Contributor

I've just tested this PR locally and the modal is not resizable as described but that should be fine. The JSON metadata editor is getting bigger which helps tremendously with any quick editing and I think it should be suffice for now.

Making the modal resizable is something not yet implemented even by magnificent AntD folks so that should be fine.

Thanks for your contribution @Mayankaggarwal8055. LGTM

@Mayankaggarwal8055
Copy link
Copy Markdown
Contributor Author

Hi @hainenber,

Thanks a lot for reviewing and merging this PR — I really appreciate it.

If you have some time, I’d love to hear your feedback on this change. Specifically, whether the way I approached the fix and the implementation made sense, or if there are areas where I can improve (code quality, structure, or overall approach).

I’m trying to get better with each contribution, so any suggestions or pointers would really help.

Also happy to take on more similar issues if there’s anything you’d recommend.

Thanks again! 🙏

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dashboard:editmode Related to te Dashboard edit mode dashboard:properties Related to the properties of the Dashboard size/XS size:XS This PR changes 0-9 lines, ignoring generated files

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Editing json metadata on dashboard is now more difficult

2 participants