Skip to content

Commit

Permalink
Show newly installed apps in Installed
Browse files Browse the repository at this point in the history
  • Loading branch information
tkurki committed Nov 23, 2024
1 parent 7168d78 commit 255cb16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server-admin-ui/src/views/appstore/Apps/Apps.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ const installingCount = (appStore) => {

const selectedViewToFilter = (selectedView, appStore) => {
if (selectedView === 'Installed') {
return (app) => app.installedVersion
return (app) => app.installedVersion || app.installing
} else if (selectedView === 'Updates') {
return (app) => updateAvailable(app, appStore)
} else if (selectedView === 'Installing') {
Expand Down

0 comments on commit 255cb16

Please sign in to comment.