We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5e72b3 commit cc1d68cCopy full SHA for cc1d68c
1 file changed
frontend/src/pages/DataCleansing/Create/hooks/useOperatorOperations.ts
@@ -124,12 +124,19 @@ export function useOperatorOperations() {
124
prev.map((op) =>
125
op.id === operatorId
126
? {
127
- ...op,
128
- overrides: {
129
- ...(op?.overrides || op?.defaultParams),
130
- [paramKey]: value,
131
- },
+ ...op,
+ overrides: {
+ ...(op?.overrides || op?.defaultParams),
+ [paramKey]: value,
+ },
132
+ configs: {
133
+ ...(op?.configs),
134
+ [paramKey]: {
135
+ ...(op?.configs[paramKey]),
136
+ value: value,
137
+ }
138
}
139
140
: op
141
)
142
);
0 commit comments