luci-mod-system: use proper CSS class for map description

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2020-03-23 21:56:55 +01:00
parent 4fa409c7c4
commit 90990df3b6

View file

@ -21,7 +21,7 @@ return L.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 : '' ]))