diff --git a/src/app/shared/modal/appinstall/appinstallmodal.component.ts b/src/app/shared/modal/appinstall/appinstallmodal.component.ts
index 4ea9692dc3cad1b1e469d3be563540353ab95e9c..33c84470af8540dc4f035d8f1ec5ea9d70bbdc57 100644
--- a/src/app/shared/modal/appinstall/appinstallmodal.component.ts
+++ b/src/app/shared/modal/appinstall/appinstallmodal.component.ts
@@ -42,7 +42,6 @@ export class AppInstallModalComponent implements OnInit {
     }
 
     ngOnInit() {
-        this.app.versions = this.app.versions.filter(version => version.state === ApplicationState.ACTIVE)
         this.app.versions.sort((a, b) => a.version.localeCompare(b.version, undefined, {numeric: true}));
         this.app.versions.reverse();
         this.selectedAppVersion = this.app.versions[0].appVersionId;