This is an automated email from the ASF dual-hosted git repository. nvazquez pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/main by this push: new 2601ee3 Fix VM state column (#5490) 2601ee3 is described below commit 2601ee32d291a6d75ff9c8ddd9ca84ca81bcff52 Author: Nicolas Vazquez <nicovazque...@gmail.com> AuthorDate: Wed Sep 22 11:34:00 2021 -0300 Fix VM state column (#5490) --- ui/src/components/view/ListView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/view/ListView.vue b/ui/src/components/view/ListView.vue index fd97fdc..53ad021 100644 --- a/ui/src/components/view/ListView.vue +++ b/ui/src/components/view/ListView.vue @@ -171,7 +171,7 @@ </span> <template slot="state" slot-scope="text, record"> <status v-if="$route.path.startsWith('/host')" :text="getHostState(record)" displayText /> - <status v-else :text="text ? text : ''" displayText /> + <status v-else :text="text ? text : ''" displayText style="min-width: 80px" /> </template> <template slot="allocationstate" slot-scope="text"> <status :text="text ? text : ''" displayText />