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 792a589  primate: minor changes per testing recommendations
792a589 is described below

commit 792a589300f94f966ad235e0660ec4f8f8befbe2
Author: Rohit Yadav <rohit.ya...@shapeblue.com>
AuthorDate: Sat Feb 8 14:54:36 2020 +0530

    primate: minor changes per testing recommendations
    
    Signed-off-by: Rohit Yadav <rohit.ya...@shapeblue.com>
---
 src/components/view/DetailsTab.vue    |  2 +-
 src/components/view/ListView.vue      |  2 ++
 src/components/widgets/Breadcrumb.vue |  2 +-
 src/views/AutogenView.vue             | 11 +++++++----
 4 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/src/components/view/DetailsTab.vue 
b/src/components/view/DetailsTab.vue
index 118a563..abca482 100644
--- a/src/components/view/DetailsTab.vue
+++ b/src/components/view/DetailsTab.vue
@@ -29,7 +29,7 @@
       </div>
     </a-list-item>
     <DedicateData :resource="resource" v-if="dedicatedSectionActive" />
-    <VmwareData :resource="resource" v-if="$route.meta.name === 'zone'" />
+    <VmwareData :resource="resource" v-if="$route.meta.name === 'zone' && 
'listVmwareDcs' in $store.getters.apis" />
   </a-list>
 </template>
 
diff --git a/src/components/view/ListView.vue b/src/components/view/ListView.vue
index 018d588..a3f1eae 100644
--- a/src/components/view/ListView.vue
+++ b/src/components/view/ListView.vue
@@ -33,6 +33,7 @@
       </span>
     </template>
 
+    <!--
     <div slot="expandedRowRender" slot-scope="resource">
       <info-card :resource="resource" style="margin-left: 0px; width: 50%">
         <div slot="actions" style="padding-top: 12px">
@@ -57,6 +58,7 @@
         </div>
       </info-card>
     </div>
+    -->
 
     <a slot="name" slot-scope="text, record" href="javascript:;">
       <div style="min-width: 120px">
diff --git a/src/components/widgets/Breadcrumb.vue 
b/src/components/widgets/Breadcrumb.vue
index 445d9e1..fded742 100644
--- a/src/components/widgets/Breadcrumb.vue
+++ b/src/components/widgets/Breadcrumb.vue
@@ -38,7 +38,7 @@
           </template>
           <a
             v-if="item.meta.docHelp"
-            style="margin-right: 10px"
+            style="margin-right: 12px"
             :href="docBase + '/' + $route.meta.docHelp"
             target="_blank">
             <a-icon type="question-circle-o"></a-icon>
diff --git a/src/views/AutogenView.vue b/src/views/AutogenView.vue
index f267d1f..5baedfa 100644
--- a/src/views/AutogenView.vue
+++ b/src/views/AutogenView.vue
@@ -28,11 +28,12 @@
               <a-button
                 style="margin-top: 4px"
                 :loading="loading"
-                shape="circle"
+                shape="round"
                 size="small"
-                type="dashed"
                 icon="reload"
-                @click="fetchData()" />
+                @click="fetchData()">
+                {{ "Refresh" }}
+              </a-button>
             </a-tooltip>
           </breadcrumb>
         </a-col>
@@ -47,10 +48,11 @@
               :resource="resource"
               @exec-action="execAction"/>
             <a-input-search
-              style="width: 25vw; margin-left: 10px"
+              style="width: 20vw; margin-left: 10px"
               placeholder="Search"
               v-model="searchQuery"
               v-if="!dataView && !treeView"
+              allowClear
               @search="onSearch" />
           </span>
         </a-col>
@@ -229,6 +231,7 @@
         @change="changePage"
         @showSizeChange="changePageSize"
         showSizeChanger
+        showQuickJumper
         v-if="!treeView" />
       <tree-view
         v-if="treeView"

Reply via email to