diff options
author | Stan Grishin <stangri@melmac.net> | 2021-01-12 16:56:41 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-12 16:56:41 -0800 |
commit | bcb489a74dfd6d748fd7dd1f90b92f03a40ca17d (patch) | |
tree | f29d8d622eedf62206e4100e8f1fdca42645da59 /applications/luci-app-advanced-reboot/htdocs | |
parent | 4a47bd741bdd25118584e978e10d42d91b706e18 (diff) | |
parent | 1ce1f86a2cdde8d4d55d76935fda90ff7eb89736 (diff) |
Merge pull request #4715 from stangri/master-luci-app-advanced-reboot
luci-app-advanced-reboot: rewrite rpcd in shell script + bugfixes
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', { |