diff options
author | Paul Spooren <mail@aparcar.org> | 2021-07-26 00:36:19 +0200 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2021-07-26 00:36:19 +0200 |
commit | 7f5becc69e004f831c9dc09e0859c179b439c7d2 (patch) | |
tree | 52c14677ca2203b4bcdd4e9dbc44ed19b98b970c /applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade | |
parent | 65a3166c499e0d020a24cedc47e59462fa2c4858 (diff) |
luci-app-attendedsysupgrade: fix empty array condition
In JavaScript (other than in Python) an empty array is considered `true`
within if statements. Fix this by checking for the array length rather
than its existence.
This fixes the issue of an empty dropdown menu in case the user is
running the latest release.
Signed-off-by: Paul Spooren <mail@aparcar.org>
Diffstat (limited to 'applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade')
-rw-r--r-- | applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js b/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js index f6d31a35be..3ee99684da 100644 --- a/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js +++ b/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js @@ -255,7 +255,7 @@ function check_sysupgrade(server_url, current_version, target, board_name, packa } } } - if (candidates) { + if (candidates.length) { var m, s, o; var mapdata = { |