@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kanaries/graphic-walker",
3
- "version": "0.4.26",
3
+ "version": "0.4.27",
4
4
  "scripts": {
5
5
  "dev:front_end": "vite --host",
6
6
  "dev": "npm run dev:front_end",
@@ -100,7 +100,7 @@ export const toWorkflow = (
100
100
  };
101
101
  } else if (rule.type === 'not in') {
102
102
  return {
103
- fid: f.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: f.fid,
122
+ fid,
123
123
  rule,
124
124
  };
125
125
  }