Skip to content

Commit 5009703

Browse files
prakriti-solankeykartikpersistent
authored andcommitted
Status source and type filtering (#664)
* status source * Name change * type change
1 parent 733ad66 commit 5009703

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frontend/src/components/FileTable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -628,8 +628,8 @@ const FileTable = forwardRef<ChildRef, FileTableProps>((props, ref) => {
628628
language: item?.language ?? '',
629629
processingProgress:
630630
item?.processed_chunk != undefined &&
631-
item?.total_chunks != undefined &&
632-
!isNaN(Math.floor((item?.processed_chunk / item?.total_chunks) * 100))
631+
item?.total_chunks != undefined &&
632+
!isNaN(Math.floor((item?.processed_chunk / item?.total_chunks) * 100))
633633
? Math.floor((item?.processed_chunk / item?.total_chunks) * 100)
634634
: undefined,
635635
// total_pages: item?.total_pages ?? 0,

0 commit comments

Comments
 (0)