jsstore.min.js:6 Uncaught DOMException: Failed to execute 'postMessage' on 'Worker': HTMLTableElement object could not be cloned.
at t.e.sendRequestToWorker (/js/JSSTORE/jsstore.min.js:6:5321)
at t.e.executeQry (/js/JSSTORE/jsstore.min.js:6:4715)
at t.e.processFinishedQuery (/js/JSSTORE/jsstore.min.js:6:3844)
at t.e.onMessageFromWorker (/js/JSSTORE/jsstore.min.js:6:3304)
Use Case:
results = await connection.select({ from: table, join: { with: "Address", on: "People.id=Address.pid" } });
I am trying to join to tables that share on table 1 ID number which is of type number and everytime I try I get the error shown above
Error:
jsstore.min.js:6 Uncaught DOMException: Failed to execute 'postMessage' on 'Worker': HTMLTableElement object could not be cloned. at t.e.sendRequestToWorker (/js/JSSTORE/jsstore.min.js:6:5321)
at t.e.executeQry (/js/JSSTORE/jsstore.min.js:6:4715)
at t.e.processFinishedQuery (/js/JSSTORE/jsstore.min.js:6:3844)
at t.e.onMessageFromWorker (/js/JSSTORE/jsstore.min.js:6:3304)
Use Case:
results = await connection.select({ from: table, join: { with: "Address", on: "People.id=Address.pid" } });
I am trying to join to tables that share on table 1 ID number which is of type number and everytime I try I get the error shown above