luci-mod-system: use proper CSS class for map description
authorJo-Philipp Wich <jo@mein.io>
Mon, 23 Mar 2020 20:56:55 +0000 (21:56 +0100)
committerJo-Philipp Wich <jo@mein.io>
Thu, 7 May 2020 17:40:49 +0000 (19:40 +0200)
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit 90990df3b6865e276c065733e724012938174853)

modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js

index 02ebd74b76059dca63b6727e361ef68e702144fd..147b9830f05a30c03acc20aa1cfe67ab264487b8 100644 (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 : '' ]))