fixes the added storage tags issues on adding primary storage (#6438)

This commit is contained in:
Hoang Nguyen 2022-06-08 23:18:22 +07:00 committed by GitHub
parent 78a1602eb9
commit 885e749333
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 5 deletions

View File

@ -320,11 +320,6 @@
<a-select
mode="tags"
v-model:value="selectedTags"
showSearch
optionFilterProp="label"
:filterOption="(input, option) => {
return option.children[0].children.toLowerCase().indexOf(input.toLowerCase()) >= 0
}"
:placeholder="apiParams.tags.description">
<a-select-option v-for="tag in storageTags" :key="tag.name">{{ tag.name }}</a-select-option>
</a-select>