Skip to content

Commit

Permalink
fix: glitch
Browse files Browse the repository at this point in the history
  • Loading branch information
mguellsegarra committed Sep 24, 2024
1 parent e9f7eed commit bb7598a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/widgets/base/one2many/One2manyTree.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,11 @@ export const One2manyTree = ({
selectedRowKeys={selectedRowKeys}
onSelectionCheckboxClicked={onSelectionCheckboxClicked}
totalRows={totalRows}
footer={aggregates && <AggregatesFooter aggregates={aggregates} />}
footer={
aggregates && (
<AggregatesFooter aggregates={aggregates} isLoading={false} />
)
}
hasStatusColumn={ooui.status !== null}
statusComponent={(status: any) => <Badge color={status} />}
onRowStatus={(record: any) => statusForResults.current?.[record.id]}
Expand Down

0 comments on commit bb7598a

Please sign in to comment.