From 2b0c28f1325ed51ae09599ca4f7e8c8a4000072a Mon Sep 17 00:00:00 2001 From: Frank Wall Date: Sun, 19 Dec 2021 22:22:07 +0100 Subject: [PATCH] security/acme-client: fix SFTP buttons not visible, refs #2712 --- security/acme-client/pkg-descr | 5 +++++ .../opnsense/mvc/app/views/OPNsense/AcmeClient/actions.volt | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/security/acme-client/pkg-descr b/security/acme-client/pkg-descr index 167a9b7f4..a392a30bf 100644 --- a/security/acme-client/pkg-descr +++ b/security/acme-client/pkg-descr @@ -8,6 +8,11 @@ WWW: https://github.com/acmesh-official/acme.sh Plugin Changelog ================ +3.7 + +Fixed: +* fix SFTP buttons not visible (#2712) + 3.6 Added: diff --git a/security/acme-client/src/opnsense/mvc/app/views/OPNsense/AcmeClient/actions.volt b/security/acme-client/src/opnsense/mvc/app/views/OPNsense/AcmeClient/actions.volt index 5cbf1e502..7f258eafe 100644 --- a/security/acme-client/src/opnsense/mvc/app/views/OPNsense/AcmeClient/actions.volt +++ b/security/acme-client/src/opnsense/mvc/app/views/OPNsense/AcmeClient/actions.volt @@ -96,7 +96,7 @@ POSSIBILITY OF SUCH DAMAGE. (function ($identityType) { var identityDiv = makeStatusDiv($identityType); - makeButton("{{ lang._('Show Identity') }}", "upload_sftp", "btn-info") + makeButton("{{ lang._('Show Identity') }}", "configd_upload_sftp", "btn-info") .click(function () { identityDiv.hide(); var button = $(this); @@ -145,7 +145,7 @@ POSSIBILITY OF SUCH DAMAGE. {msg: "{{ lang._('Test failed, see details.') }}"}, ]; - makeButton("{{ lang._('Test Connection') }}", "upload_sftp") + makeButton("{{ lang._('Test Connection') }}", "configd_upload_sftp") .click(function () { statusDiv.hide(); var button = $(this);