Skip to content

Commit

Permalink
luci-mod-network: fix output style of diagnostics commands
Browse files Browse the repository at this point in the history
Ensure that the output textarea uses a monospace font and preformatted text.

Fixes: 5f2d305 ("luci-mod-network: convert diagnostic page to LuCI look and feel")
Signed-off-by: Jo-Philipp Wich <[email protected]>
  • Loading branch information
jow- committed Jan 27, 2023
1 parent 025d8e7 commit 7c91e62
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ return view.extend({
E('div', { 'id' : 'command-output'},
E('textarea', {
'id': 'widget.command-output',
'style': 'width: 100%',
'style': 'width: 100%; font-family:monospace; white-space:pre',
'readonly': true,
'wrap': 'off',
'rows': '20'
Expand Down

0 comments on commit 7c91e62

Please sign in to comment.