Skip to content

Commit

Permalink
fix(dropdown): set placeholdertext regardless of values
Browse files Browse the repository at this point in the history
  • Loading branch information
lubber-de committed Nov 22, 2024
1 parent 7139e75 commit 97a0887
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/definitions/modules/dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@
module.set.initialLoad();
module.change.values(settings.values);
module.remove.initialLoad();
} else if (module.get.placeholderText() !== '') {
}
if (module.get.placeholderText() !== '') {
module.set.placeholderText();
}

Expand Down

0 comments on commit 97a0887

Please sign in to comment.