diff --git a/security/acme-client/pkg-descr b/security/acme-client/pkg-descr
index cd81cf072..d80dac31f 100644
--- a/security/acme-client/pkg-descr
+++ b/security/acme-client/pkg-descr
@@ -19,6 +19,7 @@ Changed:
* preserve old LE accounts/certs by adding a compatibility layer (#2361)
* remove the legacy log file and only rely on syslog logging (#2366)
* update tooltip style for 21.7 (#2188)
+* add tooltips for account command buttons (#2188)
Removed:
* remove obsolete account parameters: certificateAuthority, lastUpdate
diff --git a/security/acme-client/src/opnsense/mvc/app/views/OPNsense/AcmeClient/accounts.volt b/security/acme-client/src/opnsense/mvc/app/views/OPNsense/AcmeClient/accounts.volt
index 212d76673..0f03c4b1d 100644
--- a/security/acme-client/src/opnsense/mvc/app/views/OPNsense/AcmeClient/accounts.volt
+++ b/security/acme-client/src/opnsense/mvc/app/views/OPNsense/AcmeClient/accounts.volt
@@ -53,10 +53,10 @@ POSSIBILITY OF SUCH DAMAGE.
url: '/api/acmeclient/accounts/search',
formatters: {
"commands": function (column, row) {
- return " " +
- "" +
- "" +
- "";
+ return " " +
+ "" +
+ "" +
+ "";
},
"rowtoggle": function (column, row) {
if (parseInt(row[column.id], 2) == 1) {
@@ -117,6 +117,9 @@ POSSIBILITY OF SUCH DAMAGE.
*/
var grid_accounts = $("#grid-accounts").bootgrid(gridopt).on("loaded.rs.jquery.bootgrid", function (e)
{
+ // toggle all rendered tooltips (once for all)
+ $('.bootgrid-tooltip').tooltip();
+
// scale footer on resize
$(this).find("tfoot td:first-child").attr('colspan',$(this).find("th").length - 1);
$(this).find('tr[data-row-id]').each(function(){
diff --git a/security/acme-client/src/opnsense/mvc/app/views/OPNsense/AcmeClient/certificates.volt b/security/acme-client/src/opnsense/mvc/app/views/OPNsense/AcmeClient/certificates.volt
index fb90c8d15..5c053a9d5 100644
--- a/security/acme-client/src/opnsense/mvc/app/views/OPNsense/AcmeClient/certificates.volt
+++ b/security/acme-client/src/opnsense/mvc/app/views/OPNsense/AcmeClient/certificates.volt
@@ -59,13 +59,13 @@ POSSIBILITY OF SUCH DAMAGE.
url: '/api/acmeclient/certificates/search',
formatters: {
"commands": function (column, row) {
- return " " +
- "" +
- "" +
- "" +
- "" +
- "" +
- "";
+ return " " +
+ "" +
+ "" +
+ "" +
+ "" +
+ "" +
+ "";
},
"rowtoggle": function (column, row) {
if (parseInt(row[column.id], 2) == 1) {