Update placeholder text

This commit is contained in:
Jackson Harper
2022-04-06 10:03:06 -07:00
parent 1cdb7753c3
commit b7dbae61fe

View File

@ -571,7 +571,7 @@ function GenericTableCard(props: GenericTableCardProps & { isLastChild?: boolean
{showInput ? (
<Input
type="text"
placeholder='Label name (optional)'
placeholder='Label description (optional)'
value={descriptionInputText}
onChange={(event) => setDescriptionInputText(event.target.value)}
autoFocus={!!label}
@ -779,7 +779,7 @@ function MobileEditCard(props: any) {
setLabelColorHex={setLabelColorHex}
/>
<TextArea
placeholder='Label name (optional)'
placeholder='Label description (optional)'
value={descriptionInputText}
onChange={(event) => setDescriptionInputText(event.target.value)}
rows={5}
@ -872,7 +872,7 @@ function DesktopEditCard(props: any) {
/>
<Input
type="text"
placeholder='Label name (optional)'
placeholder='Label description (optional)'
value={descriptionInputText}
onChange={(event) => setDescriptionInputText(event.target.value)}
/>