luci-app-keepalived: add missing cbi class section and description 7092/head
authorFlorian Eckert <fe@dev.tdt.de>
Mon, 29 Apr 2024 10:42:59 +0000 (12:42 +0200)
committerFlorian Eckert <fe@dev.tdt.de>
Mon, 29 Apr 2024 10:44:36 +0000 (12:44 +0200)
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived/overview.js

index e65762a914eea06aae07be999132709a64b095e6..7126d5938de62eeac8066d12bb158c346db09af1 100644 (file)
@@ -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)
                ]);
        },