summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-08-16 15:29:04 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-08-16 15:29:04 -0400
commit79cd9296e9aaf2453030b014712e95312f201514 (patch)
treef3f2f84357f73d173dce29a967fb2a8ee1508a1b
parentef9ef1b2bbd9fa34375578b4091a8729d25c94ab (diff)
downloaddecky-lsfg-vk-79cd9296e9aaf2453030b014712e95312f201514.tar.gz
decky-lsfg-vk-79cd9296e9aaf2453030b014712e95312f201514.zip
fix width of DD after rm of label
-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>