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>
Mon, 23 Mar 2020 20:56:55 +0000 (21:56 +0100)
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js

index c2ab770c51f074a24ee224e56778e07b78be8181..bd1eb6e51a3b120664982d83b9c857d96865e407 100644 (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 : '' ]))