diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-08-16 15:29:04 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-08-16 15:29:04 -0400 |
| commit | 79cd9296e9aaf2453030b014712e95312f201514 (patch) | |
| tree | f3f2f84357f73d173dce29a967fb2a8ee1508a1b /src | |
| parent | ef9ef1b2bbd9fa34375578b4091a8729d25c94ab (diff) | |
| download | decky-lsfg-vk-79cd9296e9aaf2453030b014712e95312f201514.tar.gz decky-lsfg-vk-79cd9296e9aaf2453030b014712e95312f201514.zip | |
fix width of DD after rm of label
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/ProfileManagement.tsx | 20 |
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> |
