diff --git a/frontend/src/routes/(loggedin)/app/prober/+page.svelte b/frontend/src/routes/(loggedin)/app/prober/+page.svelte index 3fc0b6d..769fd5e 100644 --- a/frontend/src/routes/(loggedin)/app/prober/+page.svelte +++ b/frontend/src/routes/(loggedin)/app/prober/+page.svelte @@ -3,7 +3,13 @@ import { format, formatDistance } from 'date-fns'; import { loadData } from './api-handler'; import { onMount, onDestroy } from 'svelte'; - import { DtSrThSort, DtSrThFilter, DtSrRowCount } from '$lib/components/datatables/server'; + import { + DtSrRowsPerPage, + DtSrThSort, + DtSrThFilter, + DtSrRowCount, + DtSrPagination + } from '$lib/components/datatables/server'; const handler = new DataHandler([], { rowsPerPage: 10, totalRows: 0 }); let rows = handler.getRows(); @@ -64,6 +70,7 @@