Skip to content

Commit

Permalink
Fixed refresh button on listing of extraction events.
Browse files Browse the repository at this point in the history
  • Loading branch information
lmarini committed Oct 14, 2024
1 parent 3772eb7 commit 46ac3e5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions frontend/src/components/listeners/ExtractionJobs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,8 @@ export const ExtractionJobs = (props) => {
selectedExtractor ? selectedExtractor["name"] : null,
selectedStatus,
null,
null,
null,
fileId ? fileId : null,
datasetId ? datasetId : null,
selectedCreatedTime ? format(selectedCreatedTime, "yyyy-MM-dd") : null,
(currPageNum - 1) * limit,
limit
Expand All @@ -221,8 +221,8 @@ export const ExtractionJobs = (props) => {
selectedExtractor ? selectedExtractor["name"] : null,
selectedStatus ? selectedStatus : null,
null,
null,
null,
fileId ? fileId : null,
datasetId ? datasetId : null,
selectedCreatedTime ? format(selectedCreatedTime, "yyyy-MM-dd") : null,
newSkip,
limit
Expand All @@ -241,8 +241,8 @@ export const ExtractionJobs = (props) => {
selectedExtractor ? selectedExtractor["name"] : null,
selectedStatus ? selectedStatus : null,
null,
null,
null,
fileId ? fileId : null,
datasetId ? datasetId : null,
selectedCreatedTime ? format(selectedCreatedTime, "yyyy-MM-dd") : null,
0,
newRowsPerPage
Expand Down

0 comments on commit 46ac3e5

Please sign in to comment.