diff --git a/src/app/layouts/full-layout.component.html b/src/app/layouts/full-layout.component.html
index d1edbc4dc1..e6b2b3a6a1 100644
--- a/src/app/layouts/full-layout.component.html
+++ b/src/app/layouts/full-layout.component.html
@@ -110,11 +110,10 @@
New Project
-
+
@@ -253,7 +252,7 @@
-
+
-
+
0" class="table table-striped table-bordered">
-
-
- Virtual Machines |
-
-
-
- Id |
- Name |
-
-
- {{vm?.openstackid}} |
- {{vm?.name}} |
-
-
+
+ Virtual Machines |
+
+
+ Id |
+ Name |
+ Flavor |
+
+
+ {{ vm?.openstackid }} |
+ {{ vm?.name }} |
+ {{ vm?.flavor?.name }} |
+
0" class="table table-striped table-bordered">
-
-
-
- Volumes |
-
-
-
- Id |
- Name |
-
-
-
- {{volume?.volume_openstackid}} |
- {{volume?.volume_name}} |
+
+ Volumes |
+
+
+ Id |
+ Name |
+ Storage |
-
-
-
+
+
+ {{ volume?.volume_openstackid }} |
+ {{ volume?.volume_name }} |
+ {{ volume?.volume_storage }} GiB |
+
+
0" class="table table-striped table-bordered">
-
-
-
- Snapshots |
-
-
-
- Id |
- Name |
-
-
- {{snapshot?.snapshot_openstackid}} |
- {{snapshot?.snapshot_name}} |
-
-
-
+
+ Snapshots |
+
+
+ Id |
+ Name |
+
+
+ {{ snapshot?.snapshot_openstackid }} |
+ {{ snapshot?.snapshot_name }} |
+
diff --git a/tests/simplevm_application.spec.ts b/tests/simplevm_application.spec.ts
index af31ec6855..4669c1bf3e 100644
--- a/tests/simplevm_application.spec.ts
+++ b/tests/simplevm_application.spec.ts
@@ -9,7 +9,7 @@ test.describe.serial('@simple_vm_application', () => {
test.describe('Should delete old simple_vm applications', () => {
test.use({ storageState: Util.VO_MANAGER_STORAGE });
test('VO @simple_vm_application', async ({ page, baseURL }) => {
- test.setTimeout(60 * 1000);
+ test.setTimeout(80 * 1000);
const applicationPage = new ApplicationOverviewPage(page, baseURL);
await applicationPage.declineApplications(Util.SIMPLE_VM_APPLICATION_NAME);
const voOverviewPage = new VoOverviewPage(page, baseURL);
@@ -72,7 +72,7 @@ test.describe.serial('@simple_vm_application', () => {
test.describe('Aftercare - Should delete old simple_vm_application', () => {
test.use({ storageState: Util.VO_MANAGER_STORAGE });
test('VO @simple_vm_application', async ({ page, baseURL }) => {
- test.setTimeout(60 * 1000);
+ test.setTimeout(80 * 1000);
const applicationPage = new ApplicationOverviewPage(page, baseURL);
await applicationPage.declineApplications(Util.SIMPLE_VM_APPLICATION_NAME);
const voOverviewPage = new VoOverviewPage(page, baseURL);