Skip to content

Commit

Permalink
JNG-5784 lazy table refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
noherczeg committed Jun 17, 2024
1 parent 29993da commit 8dcc09b
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -645,10 +645,11 @@ export function LazyTable<T extends GridValidRowModel, TStored extends T, S exte
}
}

if (toolBarAction.name === calculateActionName(relationName, 'refreshAction')
|| toolBarAction.name === calculateActionName(relationName, 'exportAction')
|| toolBarAction.name === calculateActionName(relationName, 'selectorRangeAction')
) {
if (toolBarAction.name === calculateActionName(relationName, 'refreshAction')) {
fetching();
} else if (toolBarAction.name === calculateActionName(relationName, 'exportAction')
|| toolBarAction.name === calculateActionName(relationName, 'selectorRangeAction')
) {
actions[toolBarAction.name]!(processedQueryCustomizer);
} else {
if (toolBarAction.isBulk) {
Expand Down

0 comments on commit 8dcc09b

Please sign in to comment.