Skip to content
Snippets Groups Projects

Update aggrid.widget.js

Merged Mike Feranda requested to merge issue/aggrid-3381000:3381000-need-to-switch into 8.x-1.x
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -127,7 +127,7 @@
// If aggrid instance is already registered on Element. There is no
// need to register it again.
if (once('aggridDiv', 'body').length !== aggridDiv.length) {
if (once('aggridDiv', '#' + item +'').length !== aggridDiv.length) {
return;
}
@@ -1507,7 +1507,7 @@
let aggridTable = $('#' + item);
// Only run this once.
if (once('aggridTable', 'body').length !== aggridTable.length) {
if (once('aggridTable', '#' + item +'').length !== aggridTable.length) {
return;
}
Loading