Fix Select missing label

This commit is contained in:
Tessa Kelly 2022-04-14 14:26:21 -07:00
parent 3936ed26dc
commit b920840d50
2 changed files with 1 additions and 2 deletions

View File

@ -72,7 +72,6 @@ describe('UI tests', function () {
const skippedRules = {
'Accordion': ['heading-order'],
'RadioButton': ['duplicate-id'],
'Select': ['label'],
'Switch': ['aria-allowed-attr'],
}

View File

@ -85,7 +85,7 @@ type alias State =
{-| -}
init : State
init =
{ label = Control.string "Tortilla Selector"
{ label = Control.record identity |> Control.field "label" (Control.string "Tortilla Selector")
, attributes = initControls
}