Skip to content

Commit

Permalink
cmd/hiveview: avoid creating history for column filter changes (#866)
Browse files Browse the repository at this point in the history
  • Loading branch information
fjl authored Sep 16, 2023
1 parent 1af772f commit fc5f2c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/hiveview/assets/lib/app-index.js
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ class ColumnFilter {
} else {
p.delete(this.key());
}
window.location.hash = p.toString();
window.history.replaceState(null, '', '#' + p.toString());
}

// valueToRegExp turns the filter value in to a regular expression for searching.
Expand Down

0 comments on commit fc5f2c0

Please sign in to comment.