Merge pull request #4790 from opnsense/acme-grid-fix

security/acme: Fix accounts.volt and certificates.volt UIBootgrid
This commit is contained in:
Frank Wall
2025-07-05 22:30:32 +02:00
committed by GitHub
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();