feat: clear last generated data index

This commit is contained in:
karishmas6
2024-06-08 00:44:47 +05:30
parent 4e531ed760
commit 920ebe8bce

View File

@@ -771,5 +771,10 @@ export class WorkflowGenerator {
return this.checkWorkflowForParams(this.workflowRecord);
}
/**
* Clears the last generated data index.
*/
public clearLastIndex = () => {
this.generatedData.lastIndex = null;
}
}