Skip to content

Commit

Permalink
flow:fix (#514)
Browse files Browse the repository at this point in the history
* flow:fix bug

* flow:fix bug

* flow: fix bug

* flow: async front action

* flow: add api find_detail_by_obj_ids

* flow:fix
  • Loading branch information
ZzIsGod1019 authored Oct 28, 2023
1 parent a850d83 commit f37da7d
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 f37da7d

Please sign in to comment.