Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2025-02-05 16:21:32 +0100
committerArthur de Jong <arthur@arthurdejong.org>2025-02-05 17:15:09 +0100
commit149257b04ac2a3bc259de972e29bb0787e129f3e (patch)
tree2a21e54cf9adfdfa14fbbfbce4f01fbe4c5af5a5 /src
parent70069836924102171b885e84c81fc6d5c9d4b230 (diff)
Upgrade to ESLint 9HEADmaster
Diffstat (limited to 'src')
-rw-r--r--src/munin-plot.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/munin-plot.js b/src/munin-plot.js
index 4fc19b8..2fc0576 100644
--- a/src/munin-plot.js
+++ b/src/munin-plot.js
@@ -932,7 +932,9 @@ $(document).ready(function () {
// restore previous list of graphs
try {
setGraphs(JSON.parse(localStorage.getItem('shownGraphs')))
- } catch (error) {}
+ } catch (error) {
+ // ignore errors
+ }
}
})