diff options
| author | TrainDoctor <traindoctor@protonmail.com> | 2022-07-25 16:07:16 -0700 |
|---|---|---|
| committer | TrainDoctor <traindoctor@protonmail.com> | 2022-07-25 16:07:16 -0700 |
| commit | fb0b70343812aae78576e3645ad77d0d927a3f95 (patch) | |
| tree | 7346d9408ca8b41300f083ec99ba9de110dd2c28 /frontend | |
| parent | afb2c7c0ed1ef9ccad6b5a6764cdbc5c103563a8 (diff) | |
| download | decky-loader-fb0b70343812aae78576e3645ad77d0d927a3f95.tar.gz decky-loader-fb0b70343812aae78576e3645ad77d0d927a3f95.zip | |
Fix unintended question mark in "Installing" modal
Diffstat (limited to 'frontend')
| -rw-r--r-- | frontend/src/components/modals/PluginInstallModal.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/frontend/src/components/modals/PluginInstallModal.tsx b/frontend/src/components/modals/PluginInstallModal.tsx index 992ce748..d89fb5d3 100644 --- a/frontend/src/components/modals/PluginInstallModal.tsx +++ b/frontend/src/components/modals/PluginInstallModal.tsx @@ -32,7 +32,8 @@ const PluginInstallModal: FC<PluginInstallModalProps> = ({ artifact, version, ha {hash == 'False' ? <h3 style={{ color: 'red' }}>!!!!NO HASH PROVIDED!!!!</h3> : null} <div style={{ flexDirection: 'row' }}> {loading && <Spinner style={{ width: '20px' }} />} {loading ? 'Installing' : 'Install'} {artifact} - {version ? ' version ' + version : null}? + {version ? ' version ' + version : null} + {!loading && '?'} </div> </div> </ModalRoot> |
