From 3313cc58295690968ce9301c583119e8b2a70959 Mon Sep 17 00:00:00 2001 From: Abhishek Kumar Date: Thu, 30 Jan 2025 20:00:49 +0530 Subject: [PATCH] ui: fix loading for hypervisor filter in serachview (#10292) Signed-off-by: Abhishek Kumar --- ui/src/components/view/SearchView.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/src/components/view/SearchView.vue b/ui/src/components/view/SearchView.vue index 9cbe1ef0fe6..08f4cd03877 100644 --- a/ui/src/components/view/SearchView.vue +++ b/ui/src/components/view/SearchView.vue @@ -581,6 +581,9 @@ export default { if (accountIndex > -1) { this.fields[accountIndex].loading = false } + if (hypervisorIndex > -1) { + this.fields[hypervisorIndex].loading = false + } if (imageStoreIndex > -1) { this.fields[imageStoreIndex].loading = false }