SizeInput: add 'name' attr to associate <label> with <input>

This commit is contained in:
rektdeckard
2020-09-13 19:38:31 -04:00
parent 9060b6d5bc
commit 2c679f668f

View File

@@ -35,6 +35,7 @@ const SizeInput: React.FC<SizeInputProps> = () => {
<label htmlFor="size-input">{`${size}px`}</label>
<input
id="size-input"
name="size-input"
value={size}
type="range"
title={size.toString()}