From b645fd74d941d0f2cd0596b12916c9b3cfb08175 Mon Sep 17 00:00:00 2001 From: Tianling Shen Date: Sun, 12 Feb 2023 05:28:30 +0800 Subject: [PATCH] luci-app-ssr-plus: client-config: fix typo error Signed-off-by: Tianling Shen --- .../luasrc/model/cbi/shadowsocksr/client-config.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/client-config.lua b/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/client-config.lua index ed0273849..98ddfd299 100644 --- a/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/client-config.lua +++ b/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/client-config.lua @@ -147,7 +147,7 @@ o.rawhtml = true o.template = "shadowsocksr/ssrurl" o.value = sid -o = s:option(Value, "type", translate("Server Node Type")) +o = s:option(ListValue, "type", translate("Server Node Type")) if is_finded("xray") or is_finded("v2ray") then o:value("v2ray", translate("V2Ray/XRay")) end @@ -714,7 +714,7 @@ o.default = "0" if is_finded("xray") then -- [[ uTLS ]]-- - o = s:option(ListValue, "fingerprint", translate("Finger Print")) + o = s:option(Value, "fingerprint", translate("Finger Print")) o:value("", translate("disable")) o:value("firefox", translate("firefox")) o:value("chrome", translate("chrome"))