From 0b080cfd8207887039c471e95e88931406bb6a4e Mon Sep 17 00:00:00 2001 From: Suresh Kumar Anaparti Date: Mon, 4 Mar 2024 14:13:32 +0530 Subject: [PATCH] [UI] Allow detach ISO from instance toolbar when ISO is attached (#8716) --- ui/src/config/section/compute.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/config/section/compute.js b/ui/src/config/section/compute.js index 0ef53012ba0..9bf8c949144 100644 --- a/ui/src/config/section/compute.js +++ b/ui/src/config/section/compute.js @@ -32,9 +32,9 @@ export default { permission: ['listVirtualMachinesMetrics'], resourceType: 'UserVm', params: () => { - var params = { details: 'servoff,tmpl,nics,backoff' } + var params = { details: 'servoff,tmpl,iso,nics,backoff' } if (store.getters.metrics) { - params = { details: 'servoff,tmpl,nics,backoff,stats' } + params = { details: 'servoff,tmpl,iso,nics,backoff,stats' } } return params },