Skip to content

Commit 61994f1

Browse files
committed
Fixed Event Stream page not loading
1 parent bf84848 commit 61994f1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Exceptionless.Web/ClientApp/src/lib/components/events/table/EventsTailLogDataTable.svelte

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,13 @@
2727
}));
2828
const table = createSvelteTable(options);
2929
30+
const { getJSON, loading } = new FetchClient();
3031
let response: FetchClientResponse<EventSummaryModel<SummaryTemplateKeys>[]>;
31-
3232
let before: string | undefined;
3333
3434
parameters.subscribe(async () => await loadData(true));
3535
filter.subscribe(async () => await loadData(true));
3636
37-
const { getJSON, loading } = new FetchClient();
3837
async function loadData(filterChanged: boolean = false) {
3938
if ($loading && filterChanged && !before) {
4039
return;

0 commit comments

Comments
 (0)