diff options
Diffstat (limited to 'modules/luci-compat')
-rw-r--r-- | modules/luci-compat/luasrc/view/cbi/cell_valueheader.htm | 2 | ||||
-rw-r--r-- | modules/luci-compat/luasrc/view/cbi/tblsection.htm | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/luci-compat/luasrc/view/cbi/cell_valueheader.htm b/modules/luci-compat/luasrc/view/cbi/cell_valueheader.htm index 4b7095754..db5c66850 100644 --- a/modules/luci-compat/luasrc/view/cbi/cell_valueheader.htm +++ b/modules/luci-compat/luasrc/view/cbi/cell_valueheader.htm @@ -5,7 +5,7 @@ -%> <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(ftype and #ftype > 0, "data-widget", ftype) .. ifattr(title and #title > 0, "data-title", title, true) .. ifattr(descr and #descr > 0, "data-description", descr, true) %>> diff --git a/modules/luci-compat/luasrc/view/cbi/tblsection.htm b/modules/luci-compat/luasrc/view/cbi/tblsection.htm index 11c2206d8..1e067edf3 100644 --- a/modules/luci-compat/luasrc/view/cbi/tblsection.htm +++ b/modules/luci-compat/luasrc/view/cbi/tblsection.htm @@ -52,7 +52,7 @@ function render_titles() for i, k in ipairs(self.children) do if not k.optional then %><div class="th cbi-section-table-cell"<%= - width(k) .. attr('data-type', k.typename) %>><% + width(k) .. attr('data-widget', k.typename) %>><% if k.titleref then %><a title="<%=self.titledesc or translate('Go to relevant configuration page')%>" class="cbi-title-ref" href="<%=k.titleref%>"><% @@ -88,7 +88,7 @@ function render_descriptions() for i, k in ipairs(self.children) do if not k.optional then %><div class="th cbi-section-table-cell"<%= - width(k) .. attr("data-type", k.typename) %>><% + width(k) .. attr("data-widget", k.typename) %>><% write(k.description) |