diff options
author | Vadim Vetrov <vetrovvd@gmail.com> | 2024-09-14 19:30:33 +0300 |
---|---|---|
committer | Paul Donald <newtwen+github@gmail.com> | 2024-09-18 23:24:35 +0200 |
commit | dfb86709c6469fe32cb9dbd0b5b0f184562186cf (patch) | |
tree | fa4bb8f67f6cde277bee4341a93fef539fff0856 /modules/luci-mod-status/htdocs/luci-static/resources/view/status | |
parent | 72255eb46c9425fbcb3ab4e000032f6b2a0cef2d (diff) |
luci-mod-status: break-word for large commands in processes
The commit fixes #7280
Signed-off-by: Vadim Vetrov <vetrovvd@gmail.com>
Diffstat (limited to 'modules/luci-mod-status/htdocs/luci-static/resources/view/status')
-rw-r--r-- | modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js index e7d094a7f9..96a1fdecb9 100644 --- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js +++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js @@ -36,7 +36,7 @@ return view.extend({ rows.push([ proc.PID, proc.USER, - proc.COMMAND, + E('span', {'style': 'word-break: break-word'}, proc.COMMAND), proc['%CPU'], proc['%MEM'], E('div', {}, [ |