Skip to content

Commit a34801d

Browse files
author
toni.zamparetti
committed
Change to display if public IPs are reserved in the tab
1 parent 46cb805 commit a34801d

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

ui/src/views/infra/network/IpRangesTabPublic.vue

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@
4747
<template v-if="column.key === 'endip'">
4848
{{ record.endip || record.endipv6 }}
4949
</template>
50+
<template v-if="column.key === 'systemvms'">
51+
{{ record.systemvms || record.forsystemvms }}
52+
</template>
5053
<template v-if="column.key === 'account' && !basicGuestNetwork">
5154
<a-button @click="() => handleOpenAccountModal(record)">{{ record.domain === undefined ? `${$t('label.system.ip.pool')}` : `[ ${record.domain}] ${record.account === undefined ? '' : record.account}` }}</a-button>
5255
</template>
@@ -128,10 +131,6 @@
128131
<div class="list__label">{{ $t('label.domain') }}</div>
129132
<div>{{ selectedItem.domain }}</div>
130133
</div>
131-
<div style="margin-bottom: 10px;">
132-
<div class="list__label">{{ $t('label.system.vms') }}</div>
133-
<div>{{ selectedItem.forsystemvms }}</div>
134-
</div>
135134
</div>
136135

137136
<div :span="24" class="action-button">
@@ -449,6 +448,10 @@ export default {
449448
key: 'endip',
450449
title: this.$t('label.endip')
451450
},
451+
{
452+
key: 'systemvms',
453+
title: this.$t('label.reserved.system.ip')
454+
},
452455
{
453456
key: 'actions',
454457
title: this.$t('label.actions')

0 commit comments

Comments
 (0)