Skip to content

Commit

Permalink
Workaround for build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Overbeck committed Jan 7, 2025
1 parent fbcf1dd commit 659b354
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/app/workflow/versions/versions-datasource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,19 @@ export class VersionsDataSource implements DataSource<WorkflowVersion> {
pageIndex,
sortCol,
sortDirection,
null, // TODO: Replace null
'response'
);
} else {
workflowVersions = this.workflowsService.getWorkflowVersions(workflowId, pageSize, pageIndex, sortCol, sortDirection, 'response');
workflowVersions = this.workflowsService.getWorkflowVersions(
workflowId,
pageSize,
pageIndex,
sortCol,
sortDirection,
null,
'response'
); // TODO: Replace null
}

workflowVersions.pipe(finalize(() => this.loadingSubject$.next(false))).subscribe((versions) => {
Expand Down

0 comments on commit 659b354

Please sign in to comment.