diff --git a/component-catalog/src/Examples/Block.elm b/component-catalog/src/Examples/Block.elm index c727424de..c94b7f5d9 100644 --- a/component-catalog/src/Examples/Block.elm +++ b/component-catalog/src/Examples/Block.elm @@ -663,7 +663,7 @@ initControl : Control Settings initControl = ControlExtra.list |> ControlExtra.optionalListItemDefaultChecked "content" controlContent - |> ControlExtra.optionalListItemDefaultChecked "blankStyle" blankStyleContent + |> ControlExtra.optionalListItem "blankStyle" blankStyleContent |> ControlExtra.optionalBoolListItemDefaultChecked "emphasize" ( Code.fromModule moduleName "emphasize", Block.emphasize ) |> ControlExtra.optionalListItem "label" (CommonControls.string ( Code.fromModule moduleName "label", Block.label ) "Fruit") @@ -737,12 +737,12 @@ controlContent = blankStyleContent : Control ( String, Block.Attribute msg ) blankStyleContent = Control.choice - [ ( "Dashed" - , Control.value ( "Block.dashed", Block.dashed ) - ) - , ( "Underline" + [ ( "Underline" , Control.value ( "Block.underline", Block.underline ) ) + , ( "Dashed" + , Control.value ( "Block.dashed", Block.dashed ) + ) ]