Skip to content

Commit

Permalink
fix(ui): CVs made in the UI were not avaiable to select in custom fie…
Browse files Browse the repository at this point in the history
…ld (#19)
  • Loading branch information
MarkLark86 authored Jan 23, 2024
1 parent 71221db commit 5de6047
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ function getVocabularies(): Promise<Array<IVocabulary>> {
{field: 'display_name', direction: 'ascending'},
{
$and: [
{field_type: {$exists: false, $eq: null}},
{custom_field_type: {$exists: false, $eq: null}},
{field_type: null},
{custom_field_type: null},
],
}
).then((vocabularies) => {
Expand Down

0 comments on commit 5de6047

Please sign in to comment.