diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2026-07-30 16:26:27 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2026-07-30 16:26:27 -0400 |
| commit | 4390d600ffd35184c4c30bc64480f58e468627de (patch) | |
| tree | a99fbdadacd15395125e5344a462abbe5327e17e /src/components/FlatpaksModal.tsx | |
| parent | 6c5e8a8ef81b7b3d2bf19b1783250e6b0cefedf7 (diff) | |
| download | decky-lsfg-vk-4390d600ffd35184c4c30bc64480f58e468627de.tar.gz decky-lsfg-vk-4390d600ffd35184c4c30bc64480f58e468627de.zip | |
feat: migrate Decky plugin to lsfg-vk v2
Diffstat (limited to 'src/components/FlatpaksModal.tsx')
| -rw-r--r-- | src/components/FlatpaksModal.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/FlatpaksModal.tsx b/src/components/FlatpaksModal.tsx index a80fff0..0ab715a 100644 --- a/src/components/FlatpaksModal.tsx +++ b/src/components/FlatpaksModal.tsx @@ -175,7 +175,7 @@ export const FlatpaksModal: FC<FlatpaksModalProps> = ({ closeModal }) => { <PanelSectionRow> <Field label="Runtime 23.08" - description={extensionStatus.installed_23_08 ? "Installed" : "Not installed"} + description={extensionStatus.installed_23_08 ? "Installed (manual)" : "Manual installation only; use runtime 24.08 or 25.08 when possible"} icon={extensionStatus.installed_23_08 ? <FaCheck style={{color: 'green'}} /> : <FaTimes style={{color: 'red'}} />} > <ButtonItem @@ -194,7 +194,7 @@ export const FlatpaksModal: FC<FlatpaksModalProps> = ({ closeModal }) => { action(); } }} - disabled={operationInProgress === 'install-23.08' || operationInProgress === 'uninstall-23.08'} + disabled={!extensionStatus.installed_23_08 || operationInProgress === 'install-23.08' || operationInProgress === 'uninstall-23.08'} > {operationInProgress === 'install-23.08' || operationInProgress === 'uninstall-23.08' ? ( <Spinner /> |
