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 574367b commit 10922e7Copy full SHA for 10922e7
ui/src/views/compute/wizard/LoadBalancerSelection.vue
@@ -30,6 +30,7 @@
30
:rowKey="record => record.id"
31
:pagination="false"
32
:rowSelection="rowSelection"
33
+ :customRow="onClickRow"
34
size="middle"
35
:scroll="{ y: 225 }">
36
<template #headerCell="{ column }">
@@ -197,6 +198,14 @@ export default {
197
198
this.options.page = page
199
this.options.pageSize = pageSize
200
this.$emit('handle-search-filter', this.options)
201
+ },
202
+ onClickRow (record) {
203
+ return {
204
+ onClick: () => {
205
+ this.selectedRowKeys = [record.id]
206
+ this.$emit('select-load-balancer-item', record.id)
207
+ }
208
209
}
210
211
0 commit comments