Can customize from UI Cloud init metadata
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2025-06-10 20:30:51 +02:00
parent 0de15af10e
commit feca07558e
3 changed files with 117 additions and 1 deletions

View File

@ -18,6 +18,7 @@ export function TextInput(p: {
style?: React.CSSProperties;
helperText?: string;
disabled?: boolean;
endAdornment?: React.ReactNode;
}): React.ReactElement {
if (!p.editable && (p.value ?? "") === "") return <></>;
@ -51,6 +52,7 @@ export function TextInput(p: {
input: {
readOnly: !p.editable,
type: p.type,
endAdornment: p.endAdornment,
},
}}
variant={"standard"}