You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ro...@apache.org on 2020/10/28 04:40:44 UTC

[cloudstack-primate] branch master updated: config: add autofocus into the input field (#829)

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

rohit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack-primate.git


The following commit(s) were added to refs/heads/master by this push:
     new 04a5ca9  config: add autofocus into the input field (#829)
04a5ca9 is described below

commit 04a5ca9bd566a666fbb22cd678b87cbcab0ef0e3
Author: Hoang Nguyen <ho...@unitech.vn>
AuthorDate: Wed Oct 28 11:40:37 2020 +0700

    config: add autofocus into the input field (#829)
---
 src/components/view/ListView.vue | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/components/view/ListView.vue b/src/components/view/ListView.vue
index c68fd42..b3d37c8 100644
--- a/src/components/view/ListView.vue
+++ b/src/components/view/ListView.vue
@@ -260,6 +260,7 @@
     <template slot="value" slot-scope="text, record">
       <a-input
         v-if="editableValueKey === record.key"
+        :autoFocus="true"
         :defaultValue="record.value"
         :disabled="!('updateConfiguration' in $store.getters.apis)"
         v-model="editableValue"