samba4: fix the layout of textbox 5257/head
authorFritz D. Ansel <fdansel@yandex.ru>
Wed, 11 Aug 2021 22:23:07 +0000 (00:23 +0200)
committerFritz D. Ansel <fdansel@yandex.ru>
Wed, 11 Aug 2021 22:23:07 +0000 (00:23 +0200)
without this, only 50% of screen where used

Signed-off-by: Fritz D. Ansel <fdansel@yandex.ru>
applications/luci-app-samba4/htdocs/luci-static/resources/view/samba4.js

index 268aad86d3d4f2fb0a92ca0a38e54757da703a4b..a0b31cb30ace66d447f8adb8a6c0c93ec3f358c2 100644 (file)
@@ -29,7 +29,7 @@ return view.extend({
                s.anonymous = true;
 
                s.tab('general',  _('General Settings'));
-               s.tab('template', _('Edit Template'));
+               s.tab('template', _('Edit Template'), _('Edit the template that is used for generating the samba configuration.'));
 
                o = s.taboption('general', widgets.NetworkSelect, 'interface', _('Interface'),
                        _('Listen only on the given interface or, if unspecified, on lan'));
@@ -78,7 +78,7 @@ return view.extend({
                }
 
                o = s.taboption('template', form.TextValue, '_tmpl',
-                       _('Edit the template that is used for generating the samba configuration.'),
+                       null,
                        _("This is the content of the file '/etc/samba/smb.conf.template' from which your samba configuration will be generated. \
                        Values enclosed by pipe symbols ('|') should not be changed. They get their values from the 'General Settings' tab."));
                o.rows = 20;