diff --git a/pkgs/webview-ui/app/src/routes/modules/list.tsx b/pkgs/webview-ui/app/src/routes/modules/list.tsx index 285701ab8..4f10b9df1 100644 --- a/pkgs/webview-ui/app/src/routes/modules/list.tsx +++ b/pkgs/webview-ui/app/src/routes/modules/list.tsx @@ -19,9 +19,9 @@ interface CategoryProps { } const Categories = (props: CategoryProps) => { return ( - + {props.categories.map((category) => ( - {category} + {category} ))} ); @@ -32,10 +32,10 @@ interface RolesProps { } const Roles = (props: RolesProps) => { return ( -
+
- Service Typography{" "} + Service {props.roles.map((role) => ( @@ -54,9 +54,14 @@ const ModuleItem = (props: { const navigate = useNavigate(); return ( -
-
-
+
+ {/*
+
}>
  • @@ -71,20 +76,26 @@ const ModuleItem = (props: {
-
+
*/} - -
- {name} - +
+ +
+
+ + + {name} + +
+
+
+ +
+ + {info.description} +
- - -
- - {info.description} - -
+
); @@ -151,10 +162,10 @@ export const ModuleList = () => { Loading....