We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4dcc86 commit ba3d603Copy full SHA for ba3d603
1 file changed
ui/src/components/view/ListView.vue
@@ -887,6 +887,14 @@
887
<template v-if="['isfeatured'].includes(column.key) && ['guestoscategory'].includes($route.path.split('/')[1])">
888
{{ record.isfeatured ? $t('label.yes') : $t('label.no') }}
889
</template>
890
+ <template v-if="['agentscount'].includes(column.key)">
891
+ <router-link
892
+ v-if="['managementserver'].includes($route.path.split('/')[1]) && $router.resolve('/host').matched[0].redirect !== '/exception/404'"
893
+ :to="{ path: '/host', query: { managementserverid: record.id } }">
894
+ {{ text }}
895
+ </router-link>
896
+ <span v-else> {{ text }} </span>
897
+ </template>
898
<template v-if="column.key === 'order'">
899
<div class="shift-btns">
900
<a-tooltip
0 commit comments