From: Jo-Philipp Wich Date: Mon, 23 Mar 2020 20:56:55 +0000 (+0100) Subject: luci-mod-system: use proper CSS class for map description X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=90990df3b6865e276c065733e724012938174853;p=oweals%2Fluci.git luci-mod-system: use proper CSS class for map description Signed-off-by: Jo-Philipp Wich --- diff --git a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js index c2ab770c5..bd1eb6e51 100644 --- a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js +++ b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js @@ -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.') + _('
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 : '' ]))