Skip to content

Commit 7486f48

Browse files
committed
feat(FR-1734): Add 'system' type to resource group setting modal (#4724)
resolves FR-1734 # Add "System" option to resource group type selection This PR adds a new "System" option to the resource group type dropdown in the ResourceGroupSettingModal component. Users can now select "System" as a resource group type alongside the existing options (Batch, Interactive, and Inference). **Checklist:** - [ ] Documentation - [ ] Minium required manager version - [ ] Specific setting for review (eg., KB link, endpoint or how to setup) - [ ] Minimum requirements to check during review - [ ] Test case(s) to demonstrate the difference of before/after
1 parent 5ac8303 commit 7486f48

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

react/src/components/ResourceGroupSettingModal.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,7 @@ const ResourceGroupSettingModal: React.FC<ResourceGroupCreateModalProps> = ({
332332
{ label: 'Batch', value: 'batch' },
333333
{ label: 'Interactive', value: 'interactive' },
334334
{ label: 'Inference', value: 'inference' },
335+
{ label: 'System', value: 'system' },
335336
]}
336337
/>
337338
</Form.Item>

0 commit comments

Comments
 (0)