Unverified Commit 157560d5 authored by Liana Husikyan's avatar Liana Husikyan Committed by GitHub

added chacke for displayname

parent 46c4a412
...@@ -141,7 +141,7 @@ class PluginManagerComponent extends ViewPlugin { ...@@ -141,7 +141,7 @@ class PluginManagerComponent extends ViewPlugin {
render () { render () {
// Filtering helpers // Filtering helpers
const isFiltered = (api) => api.displayName.toLowerCase().includes(this.filter) const isFiltered = (api) => (api.profile.displayName ? api.profile.displayName : api.name).toLowerCase().includes(this.filter)
const isNotRequired = ({profile}) => !this.appManager.isRequired(profile.name) const isNotRequired = ({profile}) => !this.appManager.isRequired(profile.name)
const isNotHome = ({profile}) => profile.name !== 'home' const isNotHome = ({profile}) => profile.name !== 'home'
const sortByName = (a, b) => { 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