From e15eaafa3358dd3d5ef6699573e020b43b5520b6 Mon Sep 17 00:00:00 2001 From: remittor Date: Tue, 13 Jan 2026 14:11:00 +0300 Subject: [PATCH] luci: Add description for "Diagnostics" button --- .../htdocs/luci-static/resources/view/zapret2/service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luci-app-zapret2/htdocs/luci-static/resources/view/zapret2/service.js b/luci-app-zapret2/htdocs/luci-static/resources/view/zapret2/service.js index 25e4b4a..e6a5300 100644 --- a/luci-app-zapret2/htdocs/luci-static/resources/view/zapret2/service.js +++ b/luci-app-zapret2/htdocs/luci-static/resources/view/zapret2/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) });