diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2026-09-09 20:45:20 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2026-09-09 20:45:20 -0400 |
| commit | fb4d053213bdbda271a54b517a11a89c4780f80a (patch) | |
| tree | cf63819208ceb75c49c0ad08de8edd1b2b81082c /src/components/ConfigurationTab.tsx | |
| parent | cc1e6f47dd9838b066822162a607d2859c043aff (diff) | |
| download | decky-lsfg-vk-fb4d053213bdbda271a54b517a11a89c4780f80a.tar.gz decky-lsfg-vk-fb4d053213bdbda271a54b517a11a89c4780f80a.zip | |
fix: restore profile and Flatpak controls
Diffstat (limited to 'src/components/ConfigurationTab.tsx')
| -rw-r--r-- | src/components/ConfigurationTab.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/ConfigurationTab.tsx b/src/components/ConfigurationTab.tsx index 90c1a7b..8f8690c 100644 --- a/src/components/ConfigurationTab.tsx +++ b/src/components/ConfigurationTab.tsx @@ -14,6 +14,7 @@ interface ConfigurationTabProps { onSelect: (appid: string) => void; onConfigChange: (fieldName: keyof ConfigurationData, value: boolean | number | string | string[]) => Promise<void>; onEnable: (appid: string) => Promise<boolean>; + onEnableAll: () => Promise<void>; onRepair: (appid: string) => Promise<boolean>; onReset: () => Promise<void>; onResetAll: () => Promise<void>; @@ -26,6 +27,7 @@ export function ConfigurationTab({ onSelect, onConfigChange, onEnable, + onEnableAll, onRepair, onReset, onResetAll, @@ -84,6 +86,7 @@ export function ConfigurationTab({ onSelect(appid); setDetailAppId(appid); }} + onEnableAll={onEnableAll} onResetAll={onResetAll} focusConfiguredToggle={focusConfiguredToggle} onConfiguredToggleFocused={clearConfiguredToggleFocusRequest} |
