Skip to content

Commit

Permalink
webapp: fix query string handling in alert report
Browse files Browse the repository at this point in the history
Issue: #310
  • Loading branch information
jasonish committed May 15, 2024
1 parent 496ce1e commit 57c1a48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/reports/AlertsReport.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export function AlertsReport() {

let queryString = [];
if (searchParams.q) {
queryString.push(searchParams);
queryString.push(searchParams.q);
}
if (searchParams.sensor) {
queryString.push(`host:${searchParams.sensor}`);
Expand Down

0 comments on commit 57c1a48

Please sign in to comment.