feat(studio): scope editor post-save refresh by package (ADR-0048 #1824)#1715
Merged
Merged
Conversation
The metadata editor's post-save refresh re-read its layered + draft state context-free. With package-scoped overlays (framework #1827), two packages may ship the same type/name; the refresh now passes the same ?package= the initial load + save use, so the editor re-reads this package's own row after saving. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Contributor
✅ Console Performance Budget
📦 Bundle Size Report
Size Limits
|
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.
Frontend counterpart to framework#1827 (package-scoped customization overlays, closes framework #1824).
The Studio metadata editor's post-save refresh re-read its layered + draft state context-free. The initial load (and the save) already pass
?package=(since #1711); this aligns the refresh so that — when two installed packages ship the sametype/nameand each has its own overlay — the editor re-reads this package's own row after saving, not another's.One-line change:
client.layered/getDraft(type, name, { packageId: ownerPackageId })on the refresh path.Depends on framework #1827 for the server to actually persist/resolve per-package overlays.
🤖 Generated with Claude Code