We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e98afcc + 1f567b6 commit 1cee6ffCopy full SHA for 1cee6ff
client/packages/lowcoder/src/comps/controls/labelControl.tsx
@@ -254,7 +254,7 @@ export const LabelControl = (function () {
254
255
{args.help && (
256
args.showValidationWhenEmpty
257
- || (!args.showValidationWhenEmpty && Boolean(inputValue))
+ || (!args.showValidationWhenEmpty && (inputValue !== null && inputValue !== undefined && inputValue !== ""))
258
) && (
259
<HelpWrapper
260
$marginLeft={
0 commit comments