diff options
author | Stan Grishin <stangri@melmac.net> | 2021-01-06 16:56:10 +0000 |
---|---|---|
committer | Stan Grishin <stangri@melmac.net> | 2021-01-07 19:18:58 +0000 |
commit | 1ce1f86a2cdde8d4d55d76935fda90ff7eb89736 (patch) | |
tree | 4491567b0f4e5042dcb8581ba13aed26c3d128e5 /applications/luci-app-advanced-reboot/htdocs | |
parent | e7aeb9b153abc97a77be1e8ef9c8c499a0735895 (diff) |
luci-app-advanced-reboot: rewrite rpcd in shell script + bugfixes
Signed-off-by: Stan Grishin <stangri@melmac.net>
Diffstat (limited to 'applications/luci-app-advanced-reboot/htdocs')
-rw-r--r-- | applications/luci-app-advanced-reboot/htdocs/luci-static/resources/view/system/advanced_reboot.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-advanced-reboot/htdocs/luci-static/resources/view/system/advanced_reboot.js b/applications/luci-app-advanced-reboot/htdocs/luci-static/resources/view/system/advanced_reboot.js index e2c12e6a46..794ac8565e 100644 --- a/applications/luci-app-advanced-reboot/htdocs/luci-static/resources/view/system/advanced_reboot.js +++ b/applications/luci-app-advanced-reboot/htdocs/luci-static/resources/view/system/advanced_reboot.js @@ -157,7 +157,7 @@ return view.extend({ } res.push([ - (partition.number).toString(16).toUpperCase(), + (partition.number+0x100).toString(16).substr(-2).toUpperCase(), _(partition.state), partition.os.replace("Unknown", _("Unknown")).replace("Compressed", _("Compressed")), E('button', { |