Unverified Commit 46c4a412 authored by Liana Husikyan's avatar Liana Husikyan Committed by GitHub

updated search to filter with displayName

parent 6c798b22
......@@ -141,7 +141,7 @@ class PluginManagerComponent extends ViewPlugin {
render () {
// Filtering helpers
const isFiltered = (api) => api.name.toLowerCase().includes(this.filter)
const isFiltered = (api) => api.displayName.toLowerCase().includes(this.filter)
const isNotRequired = ({profile}) => !this.appManager.isRequired(profile.name)
const isNotHome = ({profile}) => profile.name !== 'home'
const sortByName = (a, b) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment