feat: add env editor diff gutter indicators#4492
Open
mhbdev wants to merge 1 commit into
Open
Conversation
- add reusable CodeMirror diff gutter support in shared `CodeEditor` via `showDiffGutter` + `diffOriginalValue` - render visual line markers for added/modified/removed lines - enable indicators in environment editors: - environment-level vars - project-level vars - service env editors - Traefik env editor - shared `Secrets`-based env inputs - style gutter markers for light/dark themes - reduce noise by ignoring blank spacer lines in marker placement and anchoring removals to nearest non-blank line This improves visibility of unsaved env edits and line-level diffs across Environment-related tabs.
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.
Summary
This PR adds line-level gutter indicators to env editors so unsaved changes are easier to spot and scan.
It introduces a reusable diff-gutter capability in the shared editor and enables it across Environment-related screens.
What changed
CodeEditor:showDiffGutterdiffOriginalValueSecrets-based env sections (including preview settings)Why
Env editors can become hard to review quickly, especially with multiline values and spacing.
These indicators make diffs and unsaved edits immediately observable without changing existing save behavior.
UX impact
Validation
pnpm --filter dokploy typecheck).Notes
Related issues
fixes and closes #4491