From 015bf4befe7da0782d3fbed66d0b47fda43dbbda Mon Sep 17 00:00:00 2001 From: remittor Date: Tue, 13 Jan 2026 13:34:25 +0300 Subject: [PATCH] luci: Add description for "Diagnostics" button --- .../htdocs/luci-static/resources/view/zapret/service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luci-app-zapret/htdocs/luci-static/resources/view/zapret/service.js b/luci-app-zapret/htdocs/luci-static/resources/view/zapret/service.js index 92a1d33..59160b6 100644 --- a/luci-app-zapret/htdocs/luci-static/resources/view/zapret/service.js +++ b/luci-app-zapret/htdocs/luci-static/resources/view/zapret/service.js @@ -386,7 +386,7 @@ return view.extend({ let btn_diag = create_btn('btn_diag', btn_style_action, _('Diagnostics')); btn_diag.onclick = ui.createHandlerFn(this, () => { diagnost.openDiagnostDialog(this.pkg_arch) }); - layout_append('', null, [ btn_diag ] ); + layout_append('Diagnostic tools', null, [ btn_diag ] ); let btn_update = create_btn('btn_update', btn_style_action, _('Update')); btn_update.onclick = ui.createHandlerFn(this, () => { updater.openUpdateDialog(this.pkg_arch) });