mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-24 18:58:46 +02:00
Fixed issue that searching in part notes were not possible
This fixes issue #288
This commit is contained in:
parent
31e0ce4c64
commit
13193c9368
1 changed files with 3 additions and 0 deletions
|
@ -86,6 +86,9 @@ class PartSearchFilter implements FilterInterface
|
||||||
if($this->description) {
|
if($this->description) {
|
||||||
$fields_to_search[] = 'part.description';
|
$fields_to_search[] = 'part.description';
|
||||||
}
|
}
|
||||||
|
if ($this->comment) {
|
||||||
|
$fields_to_search[] = 'part.comment';
|
||||||
|
}
|
||||||
if($this->tags) {
|
if($this->tags) {
|
||||||
$fields_to_search[] = 'part.tags';
|
$fields_to_search[] = 'part.tags';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue