Skip to content

Commit

Permalink
1807 - client -Mention is set to false when File_ENTRY
Browse files Browse the repository at this point in the history
  • Loading branch information
ivicac committed Dec 7, 2024
1 parent 785cf99 commit 551f2c1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -548,10 +548,6 @@ const Property = ({
return;
}

if (!formState && controlType !== 'SELECT' && controlType === 'FILE_ENTRY') {
setMentionInput(true);
}

if (propertyParameterValue) {
setMentionInput(false);

Expand All @@ -565,6 +561,10 @@ const Property = ({
}
}

if (!formState && controlType !== 'SELECT' && controlType === 'FILE_ENTRY') {
setMentionInput(true);
}

if (controlType === 'SELECT' || controlType === 'JSON_SCHEMA_BUILDER' || controlType === 'OBJECT_BUILDER') {
if (
propertyParameterValue &&
Expand Down

0 comments on commit 551f2c1

Please sign in to comment.