We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 286e406 commit bd459a4Copy full SHA for bd459a4
ui/src/components/view/ListView.vue
@@ -868,6 +868,14 @@
868
<template v-if="['isfeatured'].includes(column.key) && ['guestoscategory'].includes($route.path.split('/')[1])">
869
{{ record.isfeatured ? $t('label.yes') : $t('label.no') }}
870
</template>
871
+ <template v-if="['agentscount'].includes(column.key)">
872
+ <router-link
873
+ v-if="['managementserver'].includes($route.path.split('/')[1]) && $router.resolve('/host').matched[0].redirect !== '/exception/404'"
874
+ :to="{ path: '/host', query: { managementserverid: record.id } }">
875
+ {{ text }}
876
+ </router-link>
877
+ <span v-else> {{ text }} </span>
878
+ </template>
879
<template v-if="column.key === 'order'">
880
<div class="shift-btns">
881
<a-tooltip
0 commit comments