Browse Source

Fix config sidebar button state (#602)

pull/605/head
philon- 1 year ago
committed by GitHub
parent
commit
3be528d03a
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 7
      src/pages/Config/index.tsx

7
src/pages/Config/index.tsx

@ -51,14 +51,12 @@ const ConfigPage = () => {
description: description:
`The configuration change ${moduleConfig.payloadVariant.case} has been saved.`, `The configuration change ${moduleConfig.payloadVariant.case} has been saved.`,
}) })
) )
), ),
); );
setIsSaving(false); setIsSaving(false);
} }
await connection?.commitEditSettings(); await connection?.commitEditSettings();
} catch (_error) { } catch (_error) {
toast({ toast({
title: "Error Saving Config", title: "Error Saving Config",
@ -87,11 +85,12 @@ const ConfigPage = () => {
/> />
</SidebarSection> </SidebarSection>
</Sidebar> </Sidebar>
), []) ),
[activeConfigSection],
);
return ( return (
<> <>
<PageLayout <PageLayout
contentClassName="overflow-auto" contentClassName="overflow-auto"
leftBar={leftSidebar} leftBar={leftSidebar}

Loading…
Cancel
Save