Skip to content

Commit

Permalink
docs(datalist): simplification (#2717)
Browse files Browse the repository at this point in the history
the innerText & value example doesn't look that nice
  • Loading branch information
mfranzke authored Aug 12, 2024
1 parent e95b3fd commit eed6059
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ The list attribute connects the input with a set of options that represent prede

<Canvas>
<db-input label="Inputfield" list="datalist">
<option value="Value 1">Option 1</option>
<option value="Value 2">Option 2</option>
<option value="Value 3">Option 3</option>
<option>Option 1</option>
<option>Option 2</option>
<option>Option 3</option>
</db-input>
</Canvas>

Expand Down

0 comments on commit eed6059

Please sign in to comment.