Fixed issue that searching in part notes were not possible

This fixes issue #288
This commit is contained in:
Jan Böhmer 2023-05-07 01:05:12 +02:00
parent 31e0ce4c64
commit 13193c9368

View file

@ -86,6 +86,9 @@ class PartSearchFilter implements FilterInterface
if($this->description) {
$fields_to_search[] = 'part.description';
}
if ($this->comment) {
$fields_to_search[] = 'part.comment';
}
if($this->tags) {
$fields_to_search[] = 'part.tags';
}