summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/ProfileManagement.tsx20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/components/ProfileManagement.tsx b/src/components/ProfileManagement.tsx
index 79d3aa1..709a28c 100644
--- a/src/components/ProfileManagement.tsx
+++ b/src/components/ProfileManagement.tsx
@@ -267,14 +267,18 @@ export function ProfileManagement({ currentProfile, onProfileChange }: ProfileMa
return (
<PanelSection title="Select Profile">
<PanelSectionRow>
- <div>
- <Dropdown
- rgOptions={profileOptions}
- selectedOption={selectedProfile}
- onChange={(option) => handleProfileChange(option.data)}
- disabled={isLoading}
- />
- </div>
+ <Field
+ label=""
+ childrenLayout="below"
+ childrenContainerWidth="max"
+ >
+ <Dropdown
+ rgOptions={profileOptions}
+ selectedOption={selectedProfile}
+ onChange={(option) => handleProfileChange(option.data)}
+ disabled={isLoading}
+ />
+ </Field>
</PanelSectionRow>
<PanelSectionRow>