Skip to content

Commit

Permalink
refactor: add initial value to Set as part of construction
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Feb 9, 2025
1 parent 930bc36 commit 8d73bad
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions internal/output/html/script.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
const selectedTypeFilterValue = new Set();
selectedTypeFilterValue.add("all");
const selectedTypeFilterValue = new Set(["all"]);
let selectedLayer = "all";

function quickFilterByLayer(DiffID, layerCommand) {
Expand Down

0 comments on commit 8d73bad

Please sign in to comment.