@xuda.io/xuda-db-adapter-module 1.0.63 → 1.0.65
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/index.mjs +2 -2
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -596,7 +596,7 @@ _db.pouch.init_db_replication = async function (SESSION_ID) {
|
|
|
596
596
|
|
|
597
597
|
if (!change.doc.udfData) return;
|
|
598
598
|
// console.log("handle change", change);
|
|
599
|
-
func.
|
|
599
|
+
func.runtime.ui.refresh_document_changes_for_realtime_update(SESSION_ID, {
|
|
600
600
|
row_id: change.id,
|
|
601
601
|
table_id: change.doc.udfData.udffileid,
|
|
602
602
|
});
|
|
@@ -895,5 +895,5 @@ const refresh_document_changes_for_realtime_update = function (SESSION_ID, doc_c
|
|
|
895
895
|
return func.utils.post_back_to_client(SESSION_ID, 'refresh_document_changes_for_realtime_update', _session.worker_id, { doc_change });
|
|
896
896
|
}
|
|
897
897
|
|
|
898
|
-
func.
|
|
898
|
+
func.runtime.ui.refresh_document_changes_for_realtime_update(SESSION_ID, doc_change);
|
|
899
899
|
};
|