Skip to content

Commit 7350067

Browse files
authored
ui: Fix icon on Load Balancing view tab (#6137)
1 parent c3854ba commit 7350067

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ui/src/views/network/LoadBalancing.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,9 @@
105105
</a-button>
106106
</template>
107107
<template #add="{record}">
108-
<a-button type="primary" icon="plus-outlined" @click="() => { selectedRule = record; handleOpenAddVMModal() }">
109-
{{ $t('label.add') }}
108+
<a-button type="primary" @click="() => { selectedRule = record; handleOpenAddVMModal() }">
109+
<template #icon><plus-outlined /></template>
110+
{{ $t('label.add') }}
110111
</a-button>
111112
</template>
112113
<template #expandedRowRender="{ record }">

0 commit comments

Comments
 (0)