12345678910111213141516171819 |
- --- a/package/feeds/luci/luci-compat/luasrc/view/cbi/tblsection.htm
- +++ b/package/feeds/luci/luci-compat/luasrc/view/cbi/tblsection.htm
- @@ -123,6 +123,7 @@ <h3><%=self.title%></h3>
-
- local isempty, section, i, k = true, nil, nil
- for i, k in ipairs(self:cfgsections()) do
- + if i <= 100 then
- isempty = false
- section = k
-
- @@ -165,6 +166,8 @@ <h3><%=self.title%></h3>
- </td>
- <%- end -%>
- </tr>
- + <%- i=i+1 -%>
- + <%- end -%>
- <%- end -%>
-
- <%- if isempty then -%>
|