Skip to content

Commit 0e90395

Browse files
committed
각종 목종 조회시 필터 조건값 조회부분 api명 오류 수정
1 parent 45368ec commit 0e90395

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ui/src/components/view/SearchView.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@
7171
<a-select-option
7272
v-for="(opt, idx) in field.opts"
7373
:key="idx"
74-
:value="['account'].includes(field.name) ? opt.name : opt.id"
75-
:label="$t((['storageid'].includes(field.name) || !opt.path) ? opt.name : opt.path)">
74+
:value="['account'].includes(field.name) ? opt.name : opt.id">
7675
<div>
7776
<span v-if="(field.name.startsWith('zone'))">
7877
<span v-if="opt.icon">
@@ -969,7 +968,7 @@ export default {
969968
},
970969
fetchVolumes (searchKeyword) {
971970
return new Promise((resolve, reject) => {
972-
api('listvolumes', { listAll: true, isencrypted: searchKeyword }).then(json => {
971+
api('listVolumes', { listAll: true, isencrypted: searchKeyword }).then(json => {
973972
const volumes = json.listvolumesresponse.volume
974973
resolve({
975974
type: 'isencrypted',

0 commit comments

Comments
 (0)