From ae4210e7a42962563727f95c1a5e47cd166fb678 Mon Sep 17 00:00:00 2001
From: Julian Labus <julian@labus-online.de>
Date: Fri, 1 May 2020 18:39:25 +0200
Subject: [PATCH] app: always uncheck "not recommended" checkbox

When the page was reloaded and the checkbox for not recommended
devices was checked it kept the state but the devices were not shown.
---
 app.js | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/app.js b/app.js
index 0b391c3..7a1fce3 100644
--- a/app.js
+++ b/app.js
@@ -227,6 +227,8 @@ var firmwarewizard = function() {
       document.title = config.title;
     }
 
+    $('#notrecommendedselect').checked = false;
+
     function parseURLasJSON() {
       var search = location.search.substring(1);
       return search ? JSON.parse(
-- 
GitLab