Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
ljl committed Oct 28, 2023
2 parents dd10610 + f37da7d commit 5c45537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion middleware/flow/src/dto/flow_transition_dto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ pub enum FlowTransitionFrontActionInfoRelevanceRelation {

impl FlowTransitionFrontActionInfoRelevanceRelation {
pub fn check_conform(&self, left_value: String, right_value: String) -> bool {
if left_value.is_empty() {
if left_value.is_empty() || left_value == "null" || right_value == "null" {
return false;
}
match self {
Expand Down

0 comments on commit 5c45537

Please sign in to comment.