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