feat(FR-2672): add AdminDeploymentListPage with extended filters gated by feature flag#6924
Closed
agatha197 wants to merge 1 commit into
Conversation
Contributor
Author
5 tasks
Contributor
Coverage report for
|
St.❔ |
Category | Percentage | Covered / Total |
|---|---|---|---|
| 🔴 | Statements | 8.3% (-0.01% 🔻) |
1758/21171 |
| 🔴 | Branches | 7.63% (-0.02% 🔻) |
1131/14824 |
| 🔴 | Functions | 5% (+0.01% 🔼) |
286/5724 |
| 🔴 | Lines | 8.03% (-0.01% 🔻) |
1650/20537 |
Show files with reduced coverage 🔻
St.❔ |
File | Statements | Branches | Functions | Lines |
|---|---|---|---|---|---|
| 🔴 | ... / AdminDeploymentListPage.tsx |
0% | 0% (-100% 🔻) |
0% | 0% |
Test suite run success
856 tests passing in 39 suites.
Report generated by 🧪jest coverage report action from c32bf01
…d by feature flag
58a5f33 to
c32bf01
Compare
This was referenced Apr 22, 2026
feat(FR-1368): add deployment detail — configuration section, 4 tabs, and DeploymentDetailPage
#6917
Merged
Closed
Closed
Merged
Merged
feat(FR-1368): add deployment launcher — multi-step form, hook, page, and deploy split buttons
#6912
Closed
Contributor
Author
|
Consolidated into grouped PR stack (Foundation/Components/Launcher/List/Detail). Closing this individual PR. |
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 #6900 (FR-2672)
Summary
Flow 6 of the Endpoint → Deployment migration. Replaces the stub
AdminDeploymentListPage(introduced by FR-2664) with a real admin list page that owns theadminDeploymentsRelay query and renders<DeploymentList mode="admin" />.Changes
react/src/pages/AdminDeploymentListPage.tsxwith a functional admin list page:useLazyLoadQuery<AdminDeploymentListPageQuery>on theadminDeploymentsroot field (admin-only, sees all deployments regardless of owner).nuqsuseQueryStates+useBAIPaginationOptionStateOnSearchParam.DeploymentFilterin the URL, compactFIELD:DIRsort encoding.<DeploymentList mode="admin" />—mode="admin"opts the list into the Owner column, and DeploymentList internally gates extended filters (Domain / Resource Group / Created At) onbaiClient.supports('model-deployment-extended-filter')(26.4.3+)./deployments/:deploymentId(shared detail route).BAIFetchKeyButtonfor manual reload / auto-refresh.BAICardwith titlet('deployment.AdminDeployments').Dependencies
<DeploymentList mode="admin" />table +DeploymentList_modelDeploymentConnectionfragment.Verification
Checklist
'use memo'on both componentsdeployment.AdminDeploymentsfor page title (existing key)baiClient.supports('model-deployment-extended-filter')(behaviour lives in DeploymentList — this page just passesmode="admin")