diff options
Diffstat (limited to 'gui/src/renderer/components/cell')
| -rw-r--r-- | gui/src/renderer/components/cell/Input.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/src/renderer/components/cell/Input.tsx b/gui/src/renderer/components/cell/Input.tsx index 0ab5b4c493..f464adf269 100644 --- a/gui/src/renderer/components/cell/Input.tsx +++ b/gui/src/renderer/components/cell/Input.tsx @@ -244,6 +244,7 @@ interface IRowInputProps { paddingLeft?: number; invalid?: boolean; autofocus?: boolean; + placeholder?: string; } export function RowInput(props: IRowInputProps) { @@ -309,6 +310,7 @@ export function RowInput(props: IRowInputProps) { invalid={props.invalid} onFocus={props.onFocus} onBlur={props.onBlur} + placeholder={props.placeholder} /> </StyledInputWrapper> <StyledSubmitButton onClick={submit}> |
