Skip to content

Commit 3511d95

Browse files
committed
Fixed issues with bulk actions not refreshing
1 parent acd441c commit 3511d95

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Exceptionless.Web/ClientApp/src/routes/(app)/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
}
9898
9999
// Do not refresh if the grid has selections or grid is currently paged.
100-
if (canRefresh) {
100+
if (!canRefresh) {
101101
return;
102102
}
103103

src/Exceptionless.Web/ClientApp/src/routes/(app)/issues/+page.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
context.meta = clientResponse.meta;
9797
}
9898
}
99-
const throttledLoadData = throttle(10000, loadData);
99+
const throttledLoadData = throttle(5000, loadData);
100100
101101
async function onStackChanged(message: WebSocketMessageValue<'StackChanged'>) {
102102
if (message.id && message.change_type === ChangeType.Removed) {
@@ -117,7 +117,7 @@
117117
}
118118
119119
// Do not refresh if the grid has selections or grid is currently paged.
120-
if (canRefresh) {
120+
if (!canRefresh) {
121121
return;
122122
}
123123

0 commit comments

Comments
 (0)