luci-mod-system: use proper CSS class for map description
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit 90990df3b6
)
This commit is contained in:
parent
0bcb9109f2
commit
9f4b6f7b92
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ return view.extend({
|
||||||
render: function(crontab) {
|
render: function(crontab) {
|
||||||
return E([
|
return E([
|
||||||
E('h2', _('Scheduled Tasks')),
|
E('h2', _('Scheduled Tasks')),
|
||||||
E('p', {},
|
E('p', { 'class': 'cbi-section-descr' },
|
||||||
_('This is the system crontab in which scheduled tasks can be defined.') +
|
_('This is the system crontab in which scheduled tasks can be defined.') +
|
||||||
_('<br/>Note: you need to manually restart the cron service if the crontab file was empty before editing.')),
|
_('<br/>Note: you need to manually restart the cron service if the crontab file was empty before editing.')),
|
||||||
E('p', {}, E('textarea', { 'style': 'width:100%', 'rows': 10 }, [ crontab != null ? crontab : '' ]))
|
E('p', {}, E('textarea', { 'style': 'width:100%', 'rows': 10 }, [ crontab != null ? crontab : '' ]))
|
||||||
|
|
Loading…
Reference in a new issue