File tree Expand file tree Collapse file tree 2 files changed +10
-20
lines changed
Expand file tree Collapse file tree 2 files changed +10
-20
lines changed Original file line number Diff line number Diff line change 6161 <template #label >
6262 <tooltip-label :title =" $t('label.apikeyaccess')" :tooltip =" apiParams.apikeyaccess.description" />
6363 </template >
64- <a-select
65- v-model:value =" form.apikeyaccess"
66- showSearch
67- :filterOption =" (input, option) => {
68- return option.value.toLowerCase().indexOf(input.toLowerCase()) >= 0
69- }" >
70- <a-select-option value =" Disabled" >Disabled</a-select-option >
71- <a-select-option value =" Enabled" >Enabled</a-select-option >
72- <a-select-option value =" Inherit" >Inherit</a-select-option >
73- </a-select >
64+ <a-radio-group v-model:value =" form.apikeyaccess" buttonStyle =" solid" >
65+ <a-radio-button value =" ENABLED" >Enabled</a-radio-button >
66+ <a-radio-button value =" INHERIT" >Inherit</a-radio-button >
67+ <a-radio-button value =" DISABLED" >Disabled</a-radio-button >
68+ </a-radio-group >
7469 </a-form-item >
7570 <div :span =" 24" class =" action-button" >
7671 <a-button @click =" closeAction" >{{ $t('label.cancel') }}</a-button >
Original file line number Diff line number Diff line change 8585 <template #label >
8686 <tooltip-label :title =" $t('label.apikeyaccess')" :tooltip =" apiParams.apikeyaccess.description" />
8787 </template >
88- <a-select
89- v-model:value =" form.apikeyaccess"
90- showSearch
91- :filterOption =" (input, option) => {
92- return option.value.toLowerCase().indexOf(input.toLowerCase()) >= 0
93- }" >
94- <a-select-option value =" Disabled" >Disabled</a-select-option >
95- <a-select-option value =" Enabled" >Enabled</a-select-option >
96- <a-select-option value =" Inherit" >Inherit</a-select-option >
97- </a-select >
88+ <a-radio-group v-model:value =" form.apikeyaccess" buttonStyle =" solid" >
89+ <a-radio-button value =" ENABLED" >Enabled</a-radio-button >
90+ <a-radio-button value =" INHERIT" >Inherit</a-radio-button >
91+ <a-radio-button value =" DISABLED" >Disabled</a-radio-button >
92+ </a-radio-group >
9893 </a-form-item >
9994 <div :span =" 24" class =" action-button" >
10095 <a-button @click =" closeAction" >{{ $t('label.cancel') }}</a-button >
You can’t perform that action at this time.
0 commit comments