Skip to content

Commit 9d8c57c

Browse files
committed
ui: fix delete traffic type
Currently wrong parameter - 'itemd' is passed to the `deleteTrafficType` method. Signed-off-by: Abhishek Kumar <[email protected]>
1 parent ca6d2dc commit 9d8c57c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<a-tab-pane v-for="(item, index) in traffictypes" :tab="item.traffictype" :key="index">
2222
<a-popconfirm
2323
:title="$t('message.confirm.delete.traffic.type')"
24-
@confirm="deleteTrafficType(itemd)"
24+
@confirm="deleteTrafficType(item)"
2525
:okText="$t('label.yes')"
2626
:cancelText="$t('label.no')" >
2727
<a-button

0 commit comments

Comments
 (0)