system: more text lines for crontab
authorFritz D. Ansel <fdansel@yandex.ru>
Mon, 2 Aug 2021 18:19:12 +0000 (20:19 +0200)
committerJo-Philipp Wich <jo@mein.io>
Fri, 22 Oct 2021 18:32:52 +0000 (20:32 +0200)
10 lines are very few and there is much unused space

Signed-off-by: Fritz D. Ansel <fdansel@yandex.ru>
(cherry picked from commit 8fb2d82f703743d3432fc26f5d2cb14895bf57f7)

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

index 079921a520e4de59556d682d04a46b6a0dabfabf..955fcee525de13a220ead51f1c98ffeb4ce965bc 100644 (file)
@@ -27,7 +27,7 @@ return view.extend({
                return E([
                        E('h2', _('Scheduled Tasks')),
                        E('p', { 'class': 'cbi-section-descr' }, _('This is the system crontab in which scheduled tasks can be defined.')),
-                       E('p', {}, E('textarea', { 'style': 'width:100%', 'rows': 10, 'disabled': isReadonlyView }, [ crontab != null ? crontab : '' ]))
+                       E('p', {}, E('textarea', { 'style': 'width:100%', 'rows': 25, 'disabled': isReadonlyView }, [ crontab != null ? crontab : '' ]))
                ]);
        },