From: Paul Donald Date: Sun, 1 Feb 2026 18:44:11 +0000 (+0100) Subject: luci-base: render button for drag handle X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=e365958f7d6009598c67658681f828cebd802328;p=openwrt-luci.git luci-base: render button for drag handle follow-up to 4d04877e0f013fd22bb184183bdaffe01c39a980 divs look OK in all themes but for Openwrt2020, but button looks fine everywhere (as it was before above commit). Signed-off-by: Paul Donald --- diff --git a/modules/luci-base/htdocs/luci-static/resources/form.js b/modules/luci-base/htdocs/luci-static/resources/form.js index b5c0ea80a7..502bf7032c 100644 --- a/modules/luci-base/htdocs/luci-static/resources/form.js +++ b/modules/luci-base/htdocs/luci-static/resources/form.js @@ -2781,7 +2781,7 @@ const CBITableSection = CBITypedSection.extend(/** @lends LuCI.form.TableSection this.handleTouchEnd(ev); }, this) : null }; - const dragHandle = E('div', dragHandleProps, '☰'); + const dragHandle = E('button', dragHandleProps, '☰'); dom.append(tdEl.lastElementChild, [ dragHandle ]); }