Skip to content

Commit 6c5c334

Browse files
authored
flow: fix (#733)
1 parent 64497a8 commit 6c5c334

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

backend/middlewares/flow/src/dto/flow_transition_dto.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
use bios_basic::dto::BasicQueryCondInfo;
2-
use itertools::Itertools;
32
use serde::{Deserialize, Serialize};
43
use strum::Display;
54
use tardis::{
@@ -610,6 +609,8 @@ pub enum FlowTransitionFrontActionInfoRelevanceRelation {
610609

611610
impl FlowTransitionFrontActionInfoRelevanceRelation {
612611
pub fn check_conform(&self, left_value: String, right_value: String) -> bool {
612+
use itertools::Itertools;
613+
613614
if left_value.is_empty() || left_value == "null" || right_value == "null" {
614615
return false;
615616
}

0 commit comments

Comments
 (0)