1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00

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

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"
}