Readonly mutation in OpnForm works in Docker but not locally
I’m running into a weird issue and I’m trying to understand why it behaves differently in Docker vs local.
Setup:
In dev mode I get:
The field value does not update
BUT: if I add a new input field first, I can then edit the name of an existing field just fine
No network errors, no console errors besides the Vue warn.
I need it to run without docker, because the server it will be running on doesn't have docker and we don't have permission to install it.
Setup:
- Nuxt ^3.17.1, Vue ^3.5.13
- Works fine when running via Docker
- Broken when running locally with
npm run devornode .output/server/index.mjs
In dev mode I get:
[Vue warn] Set operation on key "name" failed: target is readonlyThe field value does not update
BUT: if I add a new input field first, I can then edit the name of an existing field just fine
No network errors, no console errors besides the Vue warn.
I need it to run without docker, because the server it will be running on doesn't have docker and we don't have permission to install it.
