summaryrefslogtreecommitdiff
path: root/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'frontend')
-rw-r--r--frontend/src/components/modals/PluginInstallModal.tsx3
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>