Skip to content

Commit

Permalink
reword: Installs & Removes (Pending restart)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkurki committed Nov 23, 2024
1 parent 4ca7562 commit 7168d78
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/server-admin-ui/src/views/appstore/Apps/Apps.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,17 +124,20 @@ const Apps = function (props) {
)}
</Button>
{props.appStore.installing.length > 0 && (
<>
<Button
color={view === 'Installing' ? 'primary' : 'secondary'}
onClick={() => setSelectedView('Installing')}
>
Installing
Installs & Removes
{installingCount(props.appStore) > 0 && (
<span className="badge__update">
{installingCount(props.appStore)}
</span>
)}
</Button>
{props.appStore.installing.length > 0 && ('(Pending restart)')}
</>
)}
</div>
</div>
Expand Down

0 comments on commit 7168d78

Please sign in to comment.