Fix wrong label entity.type (#6157)

This commit is contained in:
David Jumani 2022-03-25 18:57:43 +05:30 committed by GitHub
parent 6d9b60adfb
commit f596dbb1f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,8 +53,7 @@
v-for="(field, index) in fields"
:key="index"
:label="field.name==='keyword' ?
('listAnnotations' in $store.getters.apis ? $t('label.annotation') : $t('label.name')) :
(field.name==='entitytype' ? $t('label.entity.type') : $t('label.' + field.name))">
('listAnnotations' in $store.getters.apis ? $t('label.annotation') : $t('label.name')) : $t('label.' + field.name)">
<a-select
allowClear
v-if="field.type==='list'"