diff --git a/CHANGELOG.md b/CHANGELOG.md index 5263cee7f..fd7d022dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ NOTE: As semantic versioning states all 0.y.z releases can contain breaking chan - [#349](https://github.com/kobsio/kobs/pull/#349): [app] Fix the creation of a VirtualService in the Helm chart when no `additionalRoutes` are set. - [#350](https://github.com/kobsio/kobs/pull/#350): [app] Fix Docker image and request proxy. - [#351](https://github.com/kobsio/kobs/pull/#351): [jaeger] Fix links and colors in Jaeger plugin. +- [#352](https://github.com/kobsio/kobs/pull/#352): [app] Fix plugin filter and allow filtering by the name of a satellite. ### Changed diff --git a/plugins/app/src/components/plugins/PluginInstances.tsx b/plugins/app/src/components/plugins/PluginInstances.tsx index 424ef7d18..7e247f7e9 100644 --- a/plugins/app/src/components/plugins/PluginInstances.tsx +++ b/plugins/app/src/components/plugins/PluginInstances.tsx @@ -29,10 +29,20 @@ const PluginInstances: React.FunctionComponent = () => { const [state, setState] = useState<{ page: number; perPage: number; + pluginSatellite: string; + pluginSatelliteIsOpen: boolean; pluginType: string; pluginTypeIsOpen: boolean; searchTerm: string; - }>({ page: 1, perPage: 10, pluginType: '', pluginTypeIsOpen: false, searchTerm: '' }); + }>({ + page: 1, + perPage: 10, + pluginSatellite: '', + pluginSatelliteIsOpen: false, + pluginType: '', + pluginTypeIsOpen: false, + searchTerm: '', + }); const debouncedSearchTerm = useDebounce(state.searchTerm, 500); return ( @@ -47,6 +57,27 @@ const PluginInstances: React.FunctionComponent = () => { toolbarContent={ + + +