Use a placeholder string for all dropdowns

This commit is contained in:
Eike Kettner
2021-04-11 20:37:16 +02:00
parent bbda4e84d7
commit 7b1cbe6435
31 changed files with 66 additions and 32 deletions

View File

@ -662,6 +662,7 @@ renderEditForm2 texts flags cfg settings model =
, fieldIcon = customFieldIcon
, style = dds
, createCustomFieldTitle = ""
, selectPlaceholder = texts.basics.selectPlaceholder
}
dds =
@ -672,7 +673,7 @@ renderEditForm2 texts flags cfg settings model =
folderCfg =
{ makeOption = Util.Folder.mkFolderOption flags model.allFolders
, placeholder = ""
, placeholder = texts.basics.selectPlaceholder
, labelColor = \_ -> \_ -> ""
, style = dds
}
@ -680,7 +681,7 @@ renderEditForm2 texts flags cfg settings model =
idNameCfg =
{ makeOption = \e -> { text = e.name, additional = "" }
, labelColor = \_ -> \_ -> ""
, placeholder = texts.selectPlaceholder
, placeholder = texts.basics.selectPlaceholder
, style = dds
}