diff options
author | Yousong Zhou <yszhou4tech@gmail.com> | 2019-06-28 15:53:05 +0000 |
---|---|---|
committer | Yousong Zhou <yszhou4tech@gmail.com> | 2019-07-06 22:48:10 +0800 |
commit | 609f5290c8d582def0a6334519f5e31aad19abde (patch) | |
tree | 9667c87aae5d03b968ec733f0932288f1b56d516 /modules/luci-base/luasrc/view/cbi/cell_valueheader.htm | |
parent | da10ceeb37183907e6563bf1b06e87e0b7532f58 (diff) |
luci-base: nowrap for password input and reveal button
Fixes openwrt/luci#2624
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
Diffstat (limited to 'modules/luci-base/luasrc/view/cbi/cell_valueheader.htm')
-rw-r--r-- | modules/luci-base/luasrc/view/cbi/cell_valueheader.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/luasrc/view/cbi/cell_valueheader.htm b/modules/luci-base/luasrc/view/cbi/cell_valueheader.htm index cb11d8f61a..4b70957543 100644 --- a/modules/luci-base/luasrc/view/cbi/cell_valueheader.htm +++ b/modules/luci-base/luasrc/view/cbi/cell_valueheader.htm @@ -3,7 +3,7 @@ local descr = luci.util.trim(striptags(self.description)) local ftype = self.typename or (self.template and self.template:gsub("^.+/", "")) -%> -<div class="td cbi-value-field<% if self.error and self.error[section] then %> cbi-value-error<% end %>"<%= +<div class="td cbi-value-field<% if self.error and self.error[section] then %> cbi-value-error<% end %><% if self.password then %> nowrap<% end %>"<%= attr("data-name", self.option) .. ifattr(ftype and #ftype > 0, "data-type", ftype) .. ifattr(title and #title > 0, "data-title", title, true) .. |