Fix: Product Permutations save on production.

This commit is contained in:
2024-11-15 10:04:38 +00:00
parent 57b28d8789
commit 55bbcac375
4 changed files with 39 additions and 40 deletions

View File

@@ -25,6 +25,7 @@ export default class TableBasePage extends BasePage {
this.dragSrcRow = null;
this.hookupTableCellDdls = this.hookupTableCellDdls.bind(this);
this.getAndLoadFilteredTableContent = this.getAndLoadFilteredTableContent.bind(this);
}
initialize(isPopState = false) {
@@ -87,7 +88,7 @@ export default class TableBasePage extends BasePage {
this.getAndLoadFilteredTableContent();
});
}
getAndLoadFilteredTableContent() {
getAndLoadFilteredTableContent = () => {
this.callFilterTableContent()
.catch(error => console.error('Error:', error));
}