Skip to content

Commit eb1dc03

Browse files
committed
fix(playground): update example for subscription
1 parent bbeff2f commit eb1dc03

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

playground/entities.html

+5-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,11 @@
4949
models: []
5050
}
5151
}
52-
], (updatedEntities) => {
53-
updateManager.displayUpdate('update', updatedEntities);
52+
], (entity_id, models) => {
53+
updateManager.displayUpdate('update', {
54+
entity_id: entity_id,
55+
models: models
56+
});
5457
});
5558

5659
// Keeps the subscription alive.

playground/events.html

+5-2
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,11 @@
6161
}
6262
],
6363
is_historical,
64-
(updatedEvents) => {
65-
updateManager.displayUpdate('update', updatedEvents);
64+
(entity_id, models) => {
65+
updateManager.displayUpdate('update', {
66+
entity_id: entity_id,
67+
models: models
68+
});
6669
});
6770

6871
// Keeps the subscription alive.

0 commit comments

Comments
 (0)