You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/process/processOne.ts
-8Lines changed: 0 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -33,10 +33,6 @@ export async function processOne<ProcessorScope>(context: ProcessorsContext<Proc
33
33
// If the component has ephemeral state, then we need to reset it in case this is e.g. a data grid,
34
34
// in which each row needs to be validated independently
35
35
resetEphermalState(component);
36
-
37
-
if(!context.row){
38
-
return;
39
-
}
40
36
context.processor=ProcessorType.Custom;
41
37
for(constprocessorofprocessors){
42
38
if(processor?.process){
@@ -69,10 +65,6 @@ export function processOneSync<ProcessorScope>(context: ProcessorsContext<Proces
69
65
70
66
// If the component has ephemeral state, then we need to reset the ephemeral state in case this is e.g. a data grid, in which each row needs to be validated independently
0 commit comments