Skip to content

Commit a623d99

Browse files
label and checkboxes placement changes (#675)
* label and checkboxes placement changes * checkbox placement changes
1 parent cb14edb commit a623d99

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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,

frontend/src/utils/Utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ export const filterData = (
171171
allNodes: ExtendedNode[],
172172
allRelationships: Relationship[],
173173
scheme: Scheme
174-
) => {
174+
) => {
175175
let filteredNodes: ExtendedNode[] = [];
176176
let filteredRelations: Relationship[] = [];
177177
let filteredScheme: Scheme = {};
@@ -208,7 +208,7 @@ export const filterData = (
208208
filteredScheme = scheme;
209209
}
210210
return { filteredNodes, filteredRelations, filteredScheme };
211-
};
211+
};
212212

213213
export const getDateTime = () => {
214214
const date = new Date();

0 commit comments

Comments
 (0)