fix(ui) - dashboards filter
This commit is contained in:
parent
c5f948d19d
commit
397ae6ff5e
1 changed files with 1 additions and 1 deletions
|
|
@ -70,7 +70,7 @@ export default class DashboardStore {
|
|||
return this.dashboards
|
||||
.filter(
|
||||
(dashboard) =>
|
||||
(this.filter.showMine ? !dashboard.isPublic : dashboard.isPublic) &&
|
||||
(this.filter.showMine ? !dashboard.isPublic : true) &&
|
||||
(!filterRE ||
|
||||
// @ts-ignore
|
||||
['name', 'owner', 'description'].some((key) => filterRE.test(dashboard[key])))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue