Last active
December 24, 2015 02:19
-
-
Save pocky/6730286 to your computer and use it in GitHub Desktop.
Bug inside ?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tick: | |
child: | |
age: | |
label: Age de l'enfant | |
choices: | |
2: De 0 à 2 ans | |
310: De 3 à 10 ans | |
# Output -> Age de l'enfant | |
# Output -> De 0 à 2 ans | |
# Output -> De 3 à 10 ans | |
tick: | |
child: | |
age: | |
label: Age de l'enfant | |
choices: | |
02: De 0 à 2 ans | |
310: De 3 à 10 ans | |
# Output -> Age de l'enfant | |
# Output -> tick.child.age.choices.02 | |
# Output -> De 3 à 10 ans |
If yes, you should use:
tick:
child:
age:
label: Age de l'enfant
choices:
"02": De 0 à 2 ans
310: De 3 à 10 ans
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you try with "tick.child.choices.2"? Maybe it cast it to an integer.