From dcdc4c834f33243079d7ca99b11640891ceed836 Mon Sep 17 00:00:00 2001
From: jkazmierczak <jkazmierczak@man.poznan.pl>
Date: Mon, 5 Aug 2024 14:43:37 +0200
Subject: [PATCH] fixed dropdown

---
 .../appinstance/appinstance/appinstance.component.css        | 5 ++++-
 .../appinstance/appinstance/appinstance.component.html       | 2 +-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/app/appmarket/appinstance/appinstance/appinstance.component.css b/src/app/appmarket/appinstance/appinstance/appinstance.component.css
index cb373c1e..12ecd7c9 100644
--- a/src/app/appmarket/appinstance/appinstance/appinstance.component.css
+++ b/src/app/appmarket/appinstance/appinstance/appinstance.component.css
@@ -78,4 +78,7 @@
 :host ::ng-deep  .p-dropdown {
     width: 200px;
 }
-
+.ui-dropdown-panel {
+    max-height: 150px;
+    overflow-y: auto;
+}
diff --git a/src/app/appmarket/appinstance/appinstance/appinstance.component.html b/src/app/appmarket/appinstance/appinstance/appinstance.component.html
index 71ee2698..394ce52a 100644
--- a/src/app/appmarket/appinstance/appinstance/appinstance.component.html
+++ b/src/app/appmarket/appinstance/appinstance/appinstance.component.html
@@ -224,7 +224,7 @@
             <h4 style="text-align: center">{{'APP_INSTANCES.MANUAL_UPDATE.HEADER' | translate}}</h4>
         </div>
         <div class="nmaas-modal-body">
-            <div class="" style="height: 150px">
+            <div class="" style="height: 250px">
                 <p>{{'APP_INSTANCES.MANUAL_UPDATE.BODY' | translate}}</p>
                 <div *ngIf="appVersions.length > 0">
                     <p-dropdown id="manualUpdate" [options]="appVersions" optionLabel="version" optionValue="version"
-- 
GitLab