Felix Koppe
Felix Koppe
exactly this is solving the issue.
any updates on this?
> I've seen live editing solutions which allow users to make changes as desired, but in the backend they make a PR (for review or auto-approved), that way the content...
bump. PLEASE add shadow dom support. this editor is so nice.
It simply does not work at mine.. Why we cannot use it just that simple as with dom-repeat? ``` [[item.name]] ``` I do not want to stamp 572309284234 trillion items...
hi @davidbrochart thanks for the quick reply! here is a repo to reproduce the bug: [https://github.com/chwzr/ypy-sync-issue](https://github.com/chwzr/ypy-sync-issue)
I saw this in the ypy drawing example: https://github.com/y-crdt/ypy/blob/792dc96c8a55052b9123f1620856b977234188cf/examples/drawing/client.py#L30 so i updated the put_updates function to look like this: ``` def put_updates(update_queue: asyncio.Queue, ydoc: Y.YDoc, event: Y.AfterTransactionEvent) -> None: update...
The implementation in the link does not work for the PSK.. I've copied the code and replaced the service worker registration lines in index.html with the ones from the link,...
Sorry, updated the code block, it was a copy paste error. Even without the mistakes, the behaviours is like described above. **But** i've found out that its not an issue...
Calling Y.encode_state_vector() is also producing empty updates: ``` import y_py as Y ydoc = Y.YDoc() def cb(event): print("update:", event.get_update()) ydoc.observe_after_transaction(cb) state = Y.encode_state_vector(ydoc) ``` will print: ``` update: b'\x00\x00' ```