docs(input): fixed wrong example time value (#6988)

This commit is contained in:
Max Schmitt 2021-06-09 10:16:54 -07:00 committed by GitHub
parent 521153844a
commit 048a380462
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@ await page.fill('#name', 'Peter');
await page.fill('#date', '2020-02-02');
// Time input
await page.fill('#time', '13-15');
await page.fill('#time', '13:15');
// Local datetime input
await page.fill('#local', '2020-03-02T05:15');
@ -51,7 +51,7 @@ await page.fill('#name', 'Peter')
await page.fill('#date', '2020-02-02')
# Time input
await page.fill('#time', '13-15')
await page.fill('#time', '13:15')
# Local datetime input
await page.fill('#local', '2020-03-02T05:15')
@ -68,7 +68,7 @@ page.fill('#name', 'Peter')
page.fill('#date', '2020-02-02')
# Time input
page.fill('#time', '13-15')
page.fill('#time', '13:15')
# Local datetime input
page.fill('#local', '2020-03-02T05:15')