Closed kgonella closed 9 months ago
As suggested by @jacquesbh here : https://github.com/monsieurbiz/SyliusRichEditorPlugin/issues/93#issuecomment-727207621
It will be nice if a user can copy / paste a component between windows. The actual implementation of copy / paste functionality use the sessionStorage that is a storage space not shared between windows. https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage
sessionStorage
I just replace it by localStorage instead.
localStorage
Thank you @kgonella ! 🎉
As suggested by @jacquesbh here : https://github.com/monsieurbiz/SyliusRichEditorPlugin/issues/93#issuecomment-727207621
It will be nice if a user can copy / paste a component between windows. The actual implementation of copy / paste functionality use the
sessionStorage
that is a storage space not shared between windows. https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorageI just replace it by
localStorage
instead.