Skip to content

Commit b7c0fd2

Browse files
author
Chris Hunt
committed
Fix extra prettier complaints
1 parent 70252b7 commit b7c0fd2

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

resources/assets/js/app.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -173,12 +173,12 @@ $.when($.ready).then(() => {
173173
})
174174
.on("click", ".tag", (e) => {
175175
e.preventDefault();
176-
const tag = $(e.target).data("tag")
177-
$("#taglist .tag").removeClass("current")
178-
$(e.target).addClass("current")
179-
$("#sortable .item-container").show()
176+
const tag = $(e.target).data("tag");
177+
$("#taglist .tag").removeClass("current");
178+
$(e.target).addClass("current");
179+
$("#sortable .item-container").show();
180180
if (tag !== "all") {
181-
$("#sortable .item-container:not(."+tag+")").hide()
181+
$("#sortable .item-container:not(." + tag + ")").hide();
182182
}
183183
})
184184
.on("click", "#add-item, #pin-item", (e) => {

0 commit comments

Comments
 (0)