fix(FR-2767): apply deployment migration feedback#7141
Merged
graphite-app[bot] merged 1 commit intoApr 30, 2026
Conversation
This was referenced Apr 28, 2026
Contributor
Author
Contributor
Coverage report for
|
St.❔ |
Category | Percentage | Covered / Total |
|---|---|---|---|
| 🔴 | Statements | 8.14% (-0% 🔻) |
1859/22830 |
| 🔴 | Branches | 7.36% (-0.01% 🔻) |
1187/16126 |
| 🔴 | Functions | 4.84% (+0.01% 🔼) |
297/6138 |
| 🔴 | Lines | 7.91% (-0% 🔻) |
1750/22117 |
Test suite run success
865 tests passing in 40 suites.
Report generated by 🧪jest coverage report action from 5de1b0e
d3e9533 to
83a8148
Compare
3043499 to
1a6e009
Compare
8 tasks
1a6e009 to
a254fa5
Compare
83a8148 to
19fc770
Compare
12 tasks
Merge activity
|
Resolves #7140 ([FR-2769](https://lablup.atlassian.net/browse/FR-2769)) ## Summary Applies all deployment migration review feedback: - **VFolderSelect**: Remove `ownership_type !== 'group'` filter so group-owned model folders display by name instead of raw UUID - **Tags Select**: Add `open=false` to prevent auto-opening on step render - **ResourcePresetSelect**: Fix auto-select not firing after resource group changes - **DeploymentRevisionDetailDrawer**: Wrap in `BAIUnmountAfterClose` to clear stale state on close - **Edit mode**: Show `modal.error` when a deployment update is already in progress - **AnotherDeploymentInProgress error**: Surface translated user-friendly message instead of raw server error - **Access token delete**: Implement delete action using `deleteAccessToken` mutation with confirmation - **CreateAccessTokenModal**: Replace free-form date input with Select (7/30/90 days, custom, no expiration) - **DeploymentList**: Remove custom empty text to align with admin-session table style - **desiredReplicaCount**: Add required+min:1 validation; wire to server in both create and edit modes; run `addModelRevision` + `updateModelDeployment` in parallel during edit ## Known Issue (Pending Investigation) >⚠️ **VFolderSelect still shows raw ID in one flow**: When opening the launcher via "세부 설정 후 배포하기" in `VFolderDeployModal`, the VFolderSelect still renders the folder ID instead of the folder name. The ownership filter fix above resolves the case where the folder is pre-filled from the URL/model param, but the modal flow passes the folder ID via `openLauncher({ modelFolderId })` and the Select cannot find a matching option in time. Further investigation needed. [FR-2769]: https://lablup.atlassian.net/browse/FR-2769?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
19fc770 to
bcfb7a5
Compare
a254fa5 to
5de1b0e
Compare
Base automatically changed from
feat/FR-2767-redirect-to-launcher-when-no-presets
to
main
April 30, 2026 07:16
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.

Resolves #7140 (FR-2769)
Summary
Applies all deployment migration review feedback:
ownership_type !== 'group'filter so group-owned model folders display by name instead of raw UUIDopen=falseto prevent auto-opening on step renderBAIUnmountAfterCloseto clear stale state on closemodal.errorwhen a deployment update is already in progressdeleteAccessTokenmutation with confirmationaddModelRevision+updateModelDeploymentin parallel during editKnown Issue (Pending Investigation)