diff options
author | Florian Eckert <fe@dev.tdt.de> | 2024-04-29 12:42:59 +0200 |
---|---|---|
committer | Florian Eckert <fe@dev.tdt.de> | 2024-04-29 12:44:36 +0200 |
commit | 9d526222d2b57036b3829977347b324a0bc89482 (patch) | |
tree | 691dd3b4d587e00978738e00bee91d815aa54ddd /applications/luci-app-keepalived/htdocs/luci-static | |
parent | 7c06536a00f9bc59a3146f8b9f82c90e9f8b399e (diff) |
luci-app-keepalived: add missing cbi class section and description
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
Diffstat (limited to 'applications/luci-app-keepalived/htdocs/luci-static')
-rw-r--r-- | applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/overview.js | 8 |
1 files changed, 4 insertions, 4 deletions
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) ]); }, |