Fix timestamp input pattern
This commit is contained in:
parent
6ade6611d9
commit
b0e213a2b5
1 changed files with 1 additions and 1 deletions
|
@ -473,7 +473,7 @@ export default function ReportContent(props: Props) {
|
|||
name="timestamp"
|
||||
label={__('Timestamp')}
|
||||
placeholder={'00:23:59'}
|
||||
pattern="[0-9]{3}"
|
||||
pattern="[0-9]{2}:[0-9]{2}:[0-9]{2}"
|
||||
value={input.timestamp}
|
||||
maxlength={8}
|
||||
onChange={(e) => {
|
||||
|
|
Loading…
Reference in a new issue