You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by nv...@apache.org on 2022/07/28 12:02:42 UTC

[cloudstack] branch 4.17 updated: UI: Fix account limits values reset after focus is lost on fields (#6578)

This is an automated email from the ASF dual-hosted git repository.

nvazquez pushed a commit to branch 4.17
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/4.17 by this push:
     new b00c507315 UI: Fix account limits values reset after focus is lost on fields (#6578)
b00c507315 is described below

commit b00c50731590ded2caf8f3dfe25bee215795da74
Author: Nicolas Vazquez <ni...@gmail.com>
AuthorDate: Thu Jul 28 09:02:35 2022 -0300

    UI: Fix account limits values reset after focus is lost on fields (#6578)
---
 ui/src/components/view/ResourceLimitTab.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/src/components/view/ResourceLimitTab.vue b/ui/src/components/view/ResourceLimitTab.vue
index 88ba55960d..b20f00e39a 100644
--- a/ui/src/components/view/ResourceLimitTab.vue
+++ b/ui/src/components/view/ResourceLimitTab.vue
@@ -108,7 +108,7 @@ export default {
     },
     async fetchData () {
       const params = this.getParams()
-      const form = {}
+      const form = reactive({})
       try {
         this.formLoading = true
         this.dataResource = await this.listResourceLimits(params)