From: NaOH Lin Date: Fri, 23 Jan 2026 17:22:17 +0000 (+0800) Subject: luci-app-attendedsysupgrade: fix syntax error X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=20fd3ca00f47b3fca70a747062f96d31e52d3b39;p=project%2Fluci.git luci-app-attendedsysupgrade: fix syntax error Add the missing semicolon at the end of line 5. Fix the syntax error popup on the LuCI homepage. Related to 11_upgrades.js. Fixes: f746a52979141df8ffbf7c3774002fead7817724 Signed-off-by: NaOH Lin --- diff --git a/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/status/include/11_upgrades.js b/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/status/include/11_upgrades.js index c4edcad158..39bb72c0d9 100644 --- a/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/status/include/11_upgrades.js +++ b/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/status/include/11_upgrades.js @@ -2,7 +2,7 @@ 'require baseclass'; 'require fs'; 'require rpc'; -'require uci' +'require uci'; 'require ui';