Skip to content

Commit

Permalink
Do not show rand number for some ImportEntity criteria
Browse files Browse the repository at this point in the history
  • Loading branch information
cconard96 authored and cedric-anne committed Apr 29, 2024
1 parent 79ceb4c commit 68efe6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/RuleImportEntity.php
Original file line number Diff line number Diff line change
Expand Up @@ -180,11 +180,11 @@ public function displayAdditionalRuleCondition($condition, $criteria, $name, $va
return true;

case Rule::PATTERN_EXISTS:
echo Dropdown::showYesNo($name, 1, 0);
Dropdown::showYesNo($name, 1, 0);
return true;

case Rule::PATTERN_DOES_NOT_EXISTS:
echo Dropdown::showYesNo($name, 1, 0);
Dropdown::showYesNo($name, 1, 0);
return true;
}
return false;
Expand Down

0 comments on commit 68efe6a

Please sign in to comment.