docs(input): fixed wrong example time value (#6988)
This commit is contained in:
parent
521153844a
commit
048a380462
|
|
@ -17,7 +17,7 @@ await page.fill('#name', 'Peter');
|
||||||
await page.fill('#date', '2020-02-02');
|
await page.fill('#date', '2020-02-02');
|
||||||
|
|
||||||
// Time input
|
// Time input
|
||||||
await page.fill('#time', '13-15');
|
await page.fill('#time', '13:15');
|
||||||
|
|
||||||
// Local datetime input
|
// Local datetime input
|
||||||
await page.fill('#local', '2020-03-02T05:15');
|
await page.fill('#local', '2020-03-02T05:15');
|
||||||
|
|
@ -51,7 +51,7 @@ await page.fill('#name', 'Peter')
|
||||||
await page.fill('#date', '2020-02-02')
|
await page.fill('#date', '2020-02-02')
|
||||||
|
|
||||||
# Time input
|
# Time input
|
||||||
await page.fill('#time', '13-15')
|
await page.fill('#time', '13:15')
|
||||||
|
|
||||||
# Local datetime input
|
# Local datetime input
|
||||||
await page.fill('#local', '2020-03-02T05:15')
|
await page.fill('#local', '2020-03-02T05:15')
|
||||||
|
|
@ -68,7 +68,7 @@ page.fill('#name', 'Peter')
|
||||||
page.fill('#date', '2020-02-02')
|
page.fill('#date', '2020-02-02')
|
||||||
|
|
||||||
# Time input
|
# Time input
|
||||||
page.fill('#time', '13-15')
|
page.fill('#time', '13:15')
|
||||||
|
|
||||||
# Local datetime input
|
# Local datetime input
|
||||||
page.fill('#local', '2020-03-02T05:15')
|
page.fill('#local', '2020-03-02T05:15')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue