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:
Jo-Philipp Wich 2020-03-23 21:56:55 +01:00
parent 0bcb9109f2
commit 9f4b6f7b92

View file

@ -22,7 +22,7 @@ return view.extend({
render: function(crontab) {
return E([
E('h2', _('Scheduled Tasks')),
E('p', {},
E('p', { 'class': 'cbi-section-descr' },
_('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.')),
E('p', {}, E('textarea', { 'style': 'width:100%', 'rows': 10 }, [ crontab != null ? crontab : '' ]))