Separating the multiselect fix into its own ticket

This commit is contained in:
Dean 2022-10-24 09:07:14 +01:00
parent 88a2439beb
commit b9a222ff1e
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"
}