1
0
Fork 0

feat(names): increment can be zero

This commit is contained in:
setop 2024-11-27 21:33:03 +01:00
parent 72071df374
commit c719871d5a
1 changed files with 1 additions and 1 deletions

View File

@ -123,5 +123,5 @@ view model =
, br_
, br_
, text "increment"
, select [ onInput InputIncr ] (List.range 1 20 |> List.map (String.fromInt >> (\s -> ( s, s )) >> renderOption))
, select [ onInput InputIncr ] (List.range 1 20 ++ [ 0 ] |> List.map (String.fromInt >> (\s -> ( s, s )) >> renderOption))
]