We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
<label>
<h4>
1 parent f9ce461 commit 00602a5Copy full SHA for 00602a5
frontend/app/components/redesign/components/builder/TitleInput.tsx
@@ -80,12 +80,17 @@ function CustomTitle({
80
helpText
81
}: Omit<Props, 'suggestions'> & { placeholder: string }) {
82
const ref = useRef<HTMLInputElement>(null)
83
+ const id = 'custom-title-input'
84
return (
85
<div className="flex flex-col gap-xs">
- <h4 className="text-base leading-md font-bold text-text-primary">
86
+ <label
87
+ htmlFor={id}
88
+ className="text-base leading-md font-bold text-text-primary"
89
+ >
90
Custom title
- </h4>
91
+ </label>
92
<InputField
93
+ id={id}
94
value={value}
95
onChange={(e) => onChange(e.target.value.trim())}
96
ref={ref}
0 commit comments