Minor fix

This commit is contained in:
Rainer Simon 2020-09-12 10:30:45 +02:00
parent f95cd46d55
commit 061a37e706
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ const TagWidget = props => {
<Autocomplete
placeholder={i18n.t('Add tag...')}
onSubmit={onSubmit}
vocabulary={props.vocabulary || []} />
vocabulary={props.config.tagVocabulary || []} />
}
</div>
)