We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf84848 commit 61994f1Copy full SHA for 61994f1
src/Exceptionless.Web/ClientApp/src/lib/components/events/table/EventsTailLogDataTable.svelte
@@ -27,14 +27,13 @@
27
}));
28
const table = createSvelteTable(options);
29
30
+ const { getJSON, loading } = new FetchClient();
31
let response: FetchClientResponse<EventSummaryModel<SummaryTemplateKeys>[]>;
-
32
let before: string | undefined;
33
34
parameters.subscribe(async () => await loadData(true));
35
filter.subscribe(async () => await loadData(true));
36
37
- const { getJSON, loading } = new FetchClient();
38
async function loadData(filterChanged: boolean = false) {
39
if ($loading && filterChanged && !before) {
40
return;
0 commit comments