diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-09-22 13:43:39 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-09-22 13:43:39 +0000 |
commit | 362c84480a24eaafca8973ba3ed63bb33ee1d009 (patch) | |
tree | c89af284a611a0e49bb2a748068bc262deb25e43 /libs | |
parent | f90a3d58685ba6179a0c8de2b8c07d13833ae379 (diff) |
libs/web: add another missing class attribute
Diffstat (limited to 'libs')
-rw-r--r-- | libs/web/luasrc/view/cbi/tsection.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/web/luasrc/view/cbi/tsection.htm b/libs/web/luasrc/view/cbi/tsection.htm index 29f3c1634..2aab1b56f 100644 --- a/libs/web/luasrc/view/cbi/tsection.htm +++ b/libs/web/luasrc/view/cbi/tsection.htm @@ -6,7 +6,7 @@ <% local isempty = true for i, k in ipairs(self:cfgsections()) do -%> <% if self.addremove then -%> <div class="cbi-section-remove right"> - <input type="submit" name="cbi.rts.<%=self.config%>.<%=k%>" onclick="this.form.cbi_state='del-section'; return true" value="<%:Delete%>" /> + <input type="submit" name="cbi.rts.<%=self.config%>.<%=k%>" onclick="this.form.cbi_state='del-section'; return true" value="<%:Delete%>" class="cbi-button" /> </div> <%- end %> |