summaryrefslogtreecommitdiff
path: root/frontend/src/components/modals/PluginUninstallModal.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/modals/PluginUninstallModal.tsx')
-rw-r--r--frontend/src/components/modals/PluginUninstallModal.tsx10
1 files changed, 6 insertions, 4 deletions
diff --git a/frontend/src/components/modals/PluginUninstallModal.tsx b/frontend/src/components/modals/PluginUninstallModal.tsx
index a0d04102..be479859 100644
--- a/frontend/src/components/modals/PluginUninstallModal.tsx
+++ b/frontend/src/components/modals/PluginUninstallModal.tsx
@@ -27,10 +27,12 @@ const PluginUninstallModal: FC<PluginUninstallModalProps> = ({ name, title, butt
}}
bOKDisabled={uninstalling}
bCancelDisabled={uninstalling}
- strTitle={<div style={{display: "flex", flexDirection: "row", alignItems: "center", width: "100%"}}>
- {title}
- {uninstalling && <Spinner width="24px" height="24px" style={{marginLeft: "auto"}}/>}
- </div>}
+ strTitle={
+ <div style={{ display: 'flex', flexDirection: 'row', alignItems: 'center', width: '100%' }}>
+ {title}
+ {uninstalling && <Spinner width="24px" height="24px" style={{ marginLeft: 'auto' }} />}
+ </div>
+ }
strOKButtonText={buttonText}
>
{description}