Skip to content

Commit

Permalink
No Default Label For Drop Down Component (#293)
Browse files Browse the repository at this point in the history
* There is no longer a default label for the DropDownWithAllComponent.
  • Loading branch information
IrisSC authored Oct 8, 2021
1 parent 73feb38 commit 80b4408
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/
let DropdownWithAllComponent = {
template: `<div data-cy="dropdown-component">
<label for="dropdownOptions"><slot>Select: </slot></label>
<label for="dropdownOptions"><slot> </slot></label>
<select id="dropdownOptions" v-model="selectedOption" data-cy="dropdown-input" @change="selectionChanged">
<option v-for="singleOption in fullDropdown" data-cy="single-option">{{ singleOption }}</option>
</select>
Expand Down

0 comments on commit 80b4408

Please sign in to comment.