Fix heights on transitions, text/plain display in dark mode

This commit is contained in:
shamoon
2023-03-28 22:47:04 -07:00
parent 0f824494c2
commit 7a90d90066
3 changed files with 14 additions and 1 deletions

View File

@@ -77,7 +77,7 @@ export class SelectComponent extends AbstractInputComponent<number> {
}
get isPrivate(): boolean {
return this.items.find((i) => i.id === this.value)?.private
return this.items?.find((i) => i.id === this.value)?.private
}
getSuggestions() {