From 77e141b305d609e64fafc9526cdf7ae0cc1d1e49 Mon Sep 17 00:00:00 2001 From: divocat Date: Fri, 3 Oct 2025 00:29:58 +0300 Subject: [PATCH] feat: add soft wrap to Proxy Configuration URL textarea --- .../htdocs/luci-static/resources/view/podkop/configSection.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/luci-app-podkop/htdocs/luci-static/resources/view/podkop/configSection.js b/luci-app-podkop/htdocs/luci-static/resources/view/podkop/configSection.js index ec1c8be..b5a256b 100644 --- a/luci-app-podkop/htdocs/luci-static/resources/view/podkop/configSection.js +++ b/luci-app-podkop/htdocs/luci-static/resources/view/podkop/configSection.js @@ -29,6 +29,8 @@ function createConfigSection(section, map, network) { o = s.taboption('basic', form.TextValue, 'proxy_string', _('Proxy Configuration URL'), ''); o.depends('proxy_config_type', 'url'); o.rows = 5; + o.wrap = 'soft'; + o.textarea = true; o.rmempty = false; o.ucisection = s.section; o.sectionDescriptions = new Map();