Can set member email and phone number

This commit is contained in:
2023-08-11 10:49:40 +02:00
parent 335ff0f178
commit 39190de454
5 changed files with 50 additions and 10 deletions

View File

@ -10,6 +10,7 @@ export function PropEdit(p: {
value?: string;
onValueChange: (newVal: string | undefined) => void;
size: LenConstraint;
checkValue?: (s: string) => boolean;
}): React.ReactElement {
if (((!p.editable && p.value) ?? "") === "") return <></>;
@ -30,6 +31,13 @@ export function PropEdit(p: {
}}
variant={p.editable ? "filled" : "standard"}
style={{ width: "100%", marginBottom: "15px" }}
error={
(p.checkValue &&
p.value &&
p.value.length > 0 &&
!p.checkValue(p.value)) ||
false
}
/>
);
}