From 5fd7ea9af2c3e708af06e0b87cba84f29bf35ab2 Mon Sep 17 00:00:00 2001 From: Joseph Izang Date: Thu, 19 Aug 2021 02:12:25 +0100 Subject: [PATCH] fix controlled input error for search --- libs/remix-ui/plugin-manager/src/lib/components/rootView.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/remix-ui/plugin-manager/src/lib/components/rootView.tsx b/libs/remix-ui/plugin-manager/src/lib/components/rootView.tsx index cb2deb9bed..dd913ca197 100644 --- a/libs/remix-ui/plugin-manager/src/lib/components/rootView.tsx +++ b/libs/remix-ui/plugin-manager/src/lib/components/rootView.tsx @@ -49,6 +49,7 @@ function RootView ({ pluginComponent, children }: RootViewProps) { onChange={(event) => { setFilterPlugin(event.target.value.toLowerCase()) }} + value={filterPlugins} className="form-control" placeholder="Search" data-id="pluginManagerComponentSearchInput"