Skip to content

Commit

Permalink
added changes to fix search node filter
Browse files Browse the repository at this point in the history
Signed-off-by: vinay sharma <vsharma@chef.io>
  • Loading branch information
vinay033 committed Oct 8, 2024
1 parent cf1deb9 commit 82386f7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -391,8 +391,8 @@ export class ReportingComponent implements OnInit, OnDestroy {
}
} else if (type.name === 'node') {
if ( value.id ) {
typeName = 'node_id';
filterValue = value.id;
typeName = 'node_name';
filterValue = value.title;
this.reportQuery.setFilterTitle(typeName, value.id, value.title);
} else {
typeName = 'node_name';
Expand Down

0 comments on commit 82386f7

Please sign in to comment.