Remove blank person type option

This commit is contained in:
Bill Thornton
2025-10-15 16:43:49 -04:00
parent 0682ca3b99
commit 2c2311415f

View File

@@ -62,7 +62,7 @@ function show(person) {
}
});
let selectPersonTypeOptions = '<option value=""></option>';
let selectPersonTypeOptions = '';
for (const type of Object.values(PersonKind)) {
if (type === PersonKind.Unknown) {
continue;