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);