From be011906e632349b6a7bc8ebc29379aea70b5d11 Mon Sep 17 00:00:00 2001 From: Matthew Penner Date: Thu, 22 Jul 2021 11:21:31 -0600 Subject: [PATCH] ui(admin): lower table loader height fixes tables growing while the page is loading, this is very noticable when latency to the API is low, which means the loader is only visible for 1/30th to 1/20th of a second. --- resources/scripts/components/admin/AdminTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/scripts/components/admin/AdminTable.tsx b/resources/scripts/components/admin/AdminTable.tsx index 5d343529..1c820595 100644 --- a/resources/scripts/components/admin/AdminTable.tsx +++ b/resources/scripts/components/admin/AdminTable.tsx @@ -190,7 +190,7 @@ export function Pagination ({ data, onPageSelect, children }: Props) { export const Loading = () => { return ( -
+
);