-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Metadata widget #4212
Metadata widget #4212
Conversation
|
css file next to tsx getAllAnnotations - type argument getLocaleName / getVocabularyItemLabel - pass arguments explicitly be more careful with optional chaining - don't use it where it's not needed |
scripts/api/vocabularies.ts
Outdated
if (value) { | ||
subjectMerged.push(value); | ||
|
||
if ((schemeName?.length ?? 0) && item.scheme !== schemeName) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
compare the number to something
No description provided.