Do not display full dates if day and month are unknown
This commit is contained in:
@ -69,7 +69,7 @@ export function MemberInput(p: {
|
||||
const res = options.filter((m) =>
|
||||
m?.fullName.toLowerCase().includes(state.inputValue)
|
||||
);
|
||||
res.length = Math.min(15, res.length);
|
||||
res.length = Math.min(20, res.length);
|
||||
return res;
|
||||
}}
|
||||
getOptionLabel={(o) => o?.fullName ?? ""}
|
||||
|
Reference in New Issue
Block a user