mirror of
https://github.com/netbirdio/plugins.git
synced 2026-05-22 18:44:07 -07:00
Merge pull request #4790 from opnsense/acme-grid-fix
security/acme: Fix accounts.volt and certificates.volt UIBootgrid
This commit is contained in:
@@ -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();
|
||||
|
||||
+3
-1
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user