Hi!
Great job about this editor! During early tests, I found out that info about the view state is being kept in the Entity object itself. That is causing an issue with keeping that metadata in XML while exporting to source control entities.

Normally I would not expect to keep that metadata persistent. I see the value of keeping it during development, but not permanently.
I've developed a quick alternative with sessionStorage and it works perfectly fine. Metadata is stored there temporarily when Tab is open. Each service will have its own key-value pair:

Let me know if you are interested in having it in your codebase. Can do a fork and PR later on.
Hi!
Great job about this editor! During early tests, I found out that info about the view state is being kept in the Entity object itself. That is causing an issue with keeping that metadata in XML while exporting to source control entities.
Normally I would not expect to keep that metadata persistent. I see the value of keeping it during development, but not permanently.
I've developed a quick alternative with
sessionStorageand it works perfectly fine. Metadata is stored there temporarily when Tab is open. Each service will have its own key-value pair:Let me know if you are interested in having it in your codebase. Can do a fork and PR later on.