From 8f16183bafbe3d1ac7a7cb92b6ba4a30d7a653a6 Mon Sep 17 00:00:00 2001 From: Caroline D <108160931+CarolineDenis@users.noreply.github.com> Date: Wed, 19 Feb 2025 13:04:57 -0800 Subject: [PATCH] Organize resources --- .../components/Toolbar/SystemConfigTool.tsx | 53 +++++++++++++------ 1 file changed, 38 insertions(+), 15 deletions(-) diff --git a/specifyweb/frontend/js_src/lib/components/Toolbar/SystemConfigTool.tsx b/specifyweb/frontend/js_src/lib/components/Toolbar/SystemConfigTool.tsx index c0e7b4f9043..07bfbe9c834 100644 --- a/specifyweb/frontend/js_src/lib/components/Toolbar/SystemConfigTool.tsx +++ b/specifyweb/frontend/js_src/lib/components/Toolbar/SystemConfigTool.tsx @@ -1,8 +1,10 @@ import React from 'react'; import { userText } from '../../localization/user'; -import { Container, H2 } from '../Atoms'; +import { Container, H2, H3, Ul } from '../Atoms'; +import { Button } from '../Atoms/Button'; import { load } from '../InitialContext'; +import { LoadingScreen } from '../Molecules/Dialog'; export function SystemConfigurationTool(): JSX.Element | null { const [allInfo, setAllInfo] = React.useState(null); @@ -12,39 +14,60 @@ export function SystemConfigurationTool(): JSX.Element | null { }, []); const renderHierarchy = (data: InstitutionData | null): JSX.Element => { - if (!data) return

Loading...

; + if (!data) return ; return ( - ); };