Skip to content

Commit d6ff092

Browse files
Merge pull request #1860 from kamalqureshi/custom_tag_multiselect
Tooltip - MultiSelect Custom Tags
2 parents e6a450d + d2f2a4c commit d6ff092

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

client/packages/lowcoder/src/comps/comps/selectInputComp/selectInputConstants.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ export const SelectInputValidationSection = (children: ValidationComp) => (
128128
label: trans("prop.showEmptyValidation"),
129129
})}
130130
{children.allowCustomTags.propertyView({
131-
label: trans("prop.customTags")
131+
label: trans("prop.customTags"),
132+
tooltip: trans("prop.customTagsTooltip")
132133
})}
133134
{children.customRule.propertyView({})}
134135
</Section>

client/packages/lowcoder/src/i18n/locales/en.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,8 @@ export const en = {
235235
"verticalGridCells": "Vertical Grid Cells",
236236
"timeZone": "TimeZone",
237237
"pickerMode": "Picker Mode",
238-
"customTags": "Custom Tags"
238+
"customTags": "Allow Custom Tags",
239+
"customTagsTooltip": "Allow users to enter custom tags that are not in the options list."
239240
},
240241
"autoHeightProp": {
241242
"auto": "Auto",

0 commit comments

Comments
 (0)