From bb9f321def3ca2ef8931a0aab4279b130089aa42 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 17 May 2022 21:47:33 +0200 Subject: [PATCH] luci-base: ui.js: add required CSS class to dynlist widget Signed-off-by: Jo-Philipp Wich (cherry picked from commit d6dbedd9e2c77f44be0f64ee8128401a293f77f4) --- modules/luci-base/htdocs/luci-static/resources/ui.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/luci-base/htdocs/luci-static/resources/ui.js b/modules/luci-base/htdocs/luci-static/resources/ui.js index 447bcbae09..2c4a9bf395 100644 --- a/modules/luci-base/htdocs/luci-static/resources/ui.js +++ b/modules/luci-base/htdocs/luci-static/resources/ui.js @@ -2208,7 +2208,7 @@ var UIDynamicList = UIElement.extend(/** @lends LuCI.ui.DynamicList.prototype */ 'id': this.options.id, 'class': 'cbi-dynlist', 'disabled': this.options.disabled ? '' : null - }, E('div', { 'class': 'add-item' })); + }, E('div', { 'class': 'add-item control-group' })); if (this.choices) { if (this.options.placeholder != null) @@ -4654,7 +4654,7 @@ var UI = baseclass.extend(/** @lends LuCI.ui.prototype */ { E('button', { 'class': 'btn cbi-button-action important', 'click': resolveFn.bind(null, true) - }, [ _('Apply and revert on connectivity loss') ]), ' ', + }, [ _('Apply with revert after connectivity loss') ]), ' ', E('button', { 'class': 'btn cbi-button-negative important', 'click': resolveFn.bind(null, false) -- 2.30.2