@carbonorm/carbonreact 3.5.2 → 3.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs.js
CHANGED
|
@@ -4120,8 +4120,8 @@ function initiateWebsocket({ TABLES = undefined, WsLiveUpdates = undefined, url
|
|
|
4120
4120
|
for (const element of primaryKeyKeys) {
|
|
4121
4121
|
// remove the table name from the column name
|
|
4122
4122
|
const column = element.split('.')[1];
|
|
4123
|
-
console.log('column', column, REQUEST_PRIMARY_KEY[
|
|
4124
|
-
if (REQUEST_PRIMARY_KEY[
|
|
4123
|
+
console.log('column', column, REQUEST_PRIMARY_KEY[element], row[column]);
|
|
4124
|
+
if (REQUEST_PRIMARY_KEY[element] !== row[column]) {
|
|
4125
4125
|
return false;
|
|
4126
4126
|
}
|
|
4127
4127
|
}
|