Separating the multiselect fix into its own ticket

This commit is contained in:
Dean 2022-10-24 09:07:14 +01:00
parent 59105b4b8a
commit 5e9860ab18
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@
const getFieldText = (value, options, placeholder) => {
// Always use placeholder if no value
if (value == null || value === "" || value.length == 0) {
if (value == null || value === "") {
return placeholder || "Choose an option"
}