From 45949e84565cfcc7524e0975f997d0ea11de2f95 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Thu, 7 Jul 2022 00:03:20 -0400 Subject: support non-ui plugins --- frontend/src/components/PluginView.tsx | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to 'frontend/src/components') diff --git a/frontend/src/components/PluginView.tsx b/frontend/src/components/PluginView.tsx index 953abd25..cc6dbefc 100644 --- a/frontend/src/components/PluginView.tsx +++ b/frontend/src/components/PluginView.tsx @@ -12,16 +12,18 @@ const PluginView: VFC = () => { return ( - {plugins.map(({ name, icon }) => ( - - setActivePlugin(name)}> -
-
{icon}
-
{name}
-
-
-
- ))} + {plugins + .filter((p) => p.content) + .map(({ name, icon }) => ( + + setActivePlugin(name)}> +
+
{icon}
+
{name}
+
+
+
+ ))}
); }; -- cgit v1.2.3