system: more text lines for crontab 5255/head
authorFritz D. Ansel <fdansel@yandex.ru>
Mon, 2 Aug 2021 18:19:12 +0000 (20:19 +0200)
committerFritz D. Ansel <fdansel@yandex.ru>
Wed, 11 Aug 2021 07:25:46 +0000 (09:25 +0200)
10 lines are very few and there is much unused space

Signed-off-by: Fritz D. Ansel <fdansel@yandex.ru>
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 : '' ]))
                ]);
        },