From dbd380332ca2af6b720c8bee8ae35afc933d223c Mon Sep 17 00:00:00 2001 From: rugk Date: Tue, 3 Mar 2026 10:12:32 +0000 Subject: [PATCH] style: fix ESLint no-return-assign --- js/privatebin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/privatebin.js b/js/privatebin.js index cf401345..5abcc87e 100644 --- a/js/privatebin.js +++ b/js/privatebin.js @@ -1693,7 +1693,7 @@ window.PrivateBin = (function () { */ me.init = function () { // update link to home page - document.querySelectorAll('.reloadlink').forEach(link => link.href = Helper.baseUri()); + document.querySelectorAll('.reloadlink').forEach(link => (link.href = Helper.baseUri())); window.addEventListener('popstate', historyChange); };