feat(ui): add skip schema validation toggle to Application parameters editor (#5111) - #28584
Open
somaz94 wants to merge 1 commit into
Open
feat(ui): add skip schema validation toggle to Application parameters editor (#5111)#28584somaz94 wants to merge 1 commit into
somaz94 wants to merge 1 commit into
Conversation
❌ Preview Environment undeployed from BunnyshellAvailable commands (reply to this comment):
|
Bundle ReportChanges will increase total bundle size by 698 bytes (0.01%) ⬆️. This is within the configured threshold ✅ Detailed changes
Affected Assets, Files, and Routes:view changes for bundle: argo-cd-ui-array-pushAssets Changed:
|
somaz94
marked this pull request as ready for review
July 6, 2026 05:21
… editor (argoproj#5111) Signed-off-by: somaz <genius5711@gmail.com>
somaz94
force-pushed
the
feat/ui-skip-schema-validation
branch
from
August 11, 2026 03:56
8bcc993 to
842266c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What / Why
Adds a Skip Schema Validation checkbox to the Application Parameters tab editor. When checked, saving parameter changes sends
validate=falseto the update API, skipping server-side schema validation — matching the existingargocd app set --validate=falseCLI capability, which previously had no UI equivalent.This speeds up common edits (e.g. bumping an image tag) as requested in #5111, where a maintainer confirmed the intent is a skip-validation toggle when editing parameters in the Parameters/Manifest tab (distinct from the sync-operation "Skip Schema Validation" option).
Scope: the single-source Parameters editor (the default for most apps). The multi-source source editor and the Manifest tab are left as follow-ups to keep this PR focused.
How
EditablePanelgains an opt-inshowValidationToggleprop; when set it renders the checkbox in edit mode and forwards{validate: !skipValidation}to itssavehandler. All other consumers are unchanged (still send{}).application-parameters.tsxenables the toggle on the parameters panel and forwards the query to the update call. The unchecked default sendsvalidate=true, which the server treats identically to the previous no-param behavior (server/application/application.godefaultsvalidate := true).Closes #5111
Checklist
--validate=falseonargocd app set.editable-panel.test.tsx: toggle visibility +validatetrue/false forwarded on save).pnpm lint,pnpm test, andpnpm buildall pass locally.