From c53704849a63346e5cd76e9915cb35086ad32a70 Mon Sep 17 00:00:00 2001 From: kv Date: Mon, 11 Sep 2023 00:04:39 -0700 Subject: [PATCH] fix resource page header --- frontend-v2/src/components/layouts.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend-v2/src/components/layouts.tsx b/frontend-v2/src/components/layouts.tsx index 89e12ed53..1b3f54bae 100644 --- a/frontend-v2/src/components/layouts.tsx +++ b/frontend-v2/src/components/layouts.tsx @@ -66,8 +66,10 @@ interface PageProps { export const Page = ({ title, subtitle, actions, children }: PageProps) => (
-

{title}

-
{subtitle}
+
+

{title}

+
{subtitle}
+
{actions}
{children}