We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64497a8 commit 6c5c334Copy full SHA for 6c5c334
backend/middlewares/flow/src/dto/flow_transition_dto.rs
@@ -1,5 +1,4 @@
1
use bios_basic::dto::BasicQueryCondInfo;
2
-use itertools::Itertools;
3
use serde::{Deserialize, Serialize};
4
use strum::Display;
5
use tardis::{
@@ -610,6 +609,8 @@ pub enum FlowTransitionFrontActionInfoRelevanceRelation {
610
609
611
impl FlowTransitionFrontActionInfoRelevanceRelation {
612
pub fn check_conform(&self, left_value: String, right_value: String) -> bool {
+ use itertools::Itertools;
613
+
614
if left_value.is_empty() || left_value == "null" || right_value == "null" {
615
return false;
616
}
0 commit comments