From a51c1e81135310e3e6d0e5dc94645b7fcdc870e9 Mon Sep 17 00:00:00 2001 From: SNoof85 Date: Sat, 20 Jul 2019 11:33:45 +0200 Subject: [PATCH] Fix configuration example (#9911) example was screwed up, due to new yaml rendering ? :) --- source/_components/input_datetime.markdown | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/source/_components/input_datetime.markdown b/source/_components/input_datetime.markdown index 7332b6205c2..406575ab317 100644 --- a/source/_components/input_datetime.markdown +++ b/source/_components/input_datetime.markdown @@ -21,13 +21,16 @@ add the following lines to your `configuration.yaml`: input_datetime: both_date_and_time: name: Input with both date and time - has_ has_time: true + has_date: true + has_time: true only_date: name: Input with only date - has_ has_time: false + has_date: true + has_time: false only_time: name: Input with only time - has_ has_time: true + has_date: false + has_time: true ``` {% configuration %}