From: Florian Eckert Date: Mon, 29 Apr 2024 10:42:59 +0000 (+0200) Subject: luci-app-keepalived: add missing cbi class section and description X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=9d526222d2b57036b3829977347b324a0bc89482;p=project%2Fluci.git luci-app-keepalived: add missing cbi class section and description Signed-off-by: Florian Eckert --- diff --git a/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/overview.js b/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/overview.js index e65762a914..7126d5938d 100644 --- a/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/overview.js +++ b/applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/overview.js @@ -62,10 +62,10 @@ return view.extend({ }); }); - return E([ - E('h3', _('VRRP')), - E('br'), - table + return E('div', {'class': 'cbi-map'}, [ + E('h2', _('VRRP')), + E('div', {'class': 'cbi-map-descr'}, _('This overview shows the current status of the VRRP instances on this device.')), + E('div', { 'class': 'cbi-section' }, table) ]); },