diff options
Diffstat (limited to 'applications/luci-app-keepalived/htdocs/luci-static/resources/view/keepalived')
-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) ]); }, |