Skip to content

Commit

Permalink
Fix missing name_ci filter during global group search (#1003)
Browse files Browse the repository at this point in the history
fixes #954

this is is a follow-up from #994
  • Loading branch information
nilmerg authored Apr 9, 2024
2 parents 68d5227 + d4fcb48 commit 787649f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/Icingadb/Model/Hostgroupsummary.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public function getColumns()

public function getSearchColumns()
{
return ['display_name'];
return ['name_ci', 'display_name'];
}

public function getDefaultSort()
Expand Down
2 changes: 1 addition & 1 deletion library/Icingadb/Model/ServicegroupSummary.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public function getColumns()

public function getSearchColumns()
{
return ['display_name'];
return ['name_ci', 'display_name'];
}

public function getDefaultSort()
Expand Down

0 comments on commit 787649f

Please sign in to comment.