security/acme: Fix accounts.volt and certificates.volt UIBootgrid

This commit is contained in:
Monviech
2025-07-04 18:07:45 +00:00
parent 6864606351
commit 94a5bb5c28
2 changed files with 6 additions and 2 deletions
@@ -115,7 +115,9 @@ POSSIBILITY OF SUCH DAMAGE.
/**
* copy actions for selected items from opnsense_bootgrid_plugin.js
*/
var grid_accounts = $("#grid-accounts").bootgrid(gridopt).on("loaded.rs.jquery.bootgrid", function (e)
const grid_accounts = $("#grid-accounts").UIBootgrid($.extend(gridParams, { options: gridopt }));
$("#grid-accounts").on("loaded.rs.jquery.bootgrid", function (e)
{
// toggle all rendered tooltips (once for all)
$('.bootgrid-tooltip').tooltip();
@@ -140,7 +140,9 @@ POSSIBILITY OF SUCH DAMAGE.
/**
* copy actions for selected items from opnsense_bootgrid_plugin.js
*/
var grid_certificates = $("#grid-certificates").bootgrid(gridopt).on("loaded.rs.jquery.bootgrid", function (e)
const grid_certificates = $("#grid-certificates").UIBootgrid($.extend(gridParams, { options: gridopt }));
$("#grid_certificates").on("loaded.rs.jquery.bootgrid", function (e)
{
// toggle all rendered tooltips (once for all)
$('.bootgrid-tooltip').tooltip();