@kanaries/graphic-walker 0.4.26 → 0.4.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/utils/workflow.ts
CHANGED
|
@@ -100,7 +100,7 @@ export const toWorkflow = (
|
|
|
100
100
|
};
|
|
101
101
|
} else if (rule.type === 'not in') {
|
|
102
102
|
return {
|
|
103
|
-
fid
|
|
103
|
+
fid,
|
|
104
104
|
rule: {
|
|
105
105
|
type: 'not in',
|
|
106
106
|
value: [...rule.value],
|
|
@@ -119,7 +119,7 @@ export const toWorkflow = (
|
|
|
119
119
|
const neverRule: never = rule;
|
|
120
120
|
console.error('unknown rule', neverRule);
|
|
121
121
|
return {
|
|
122
|
-
fid
|
|
122
|
+
fid,
|
|
123
123
|
rule,
|
|
124
124
|
};
|
|
125
125
|
}
|