parsing happens in backend not frontend

This commit is contained in:
chfhtw
2026-03-23 11:46:45 +01:00
parent 60e556b2a8
commit 6971aed030
@@ -24,7 +24,7 @@ export default {
.then(result => {
this.$emit('assignWidgets', result.data.map(el => ({
...el,
...{setup:JSON.parse(el.setup),arguments:JSON.parse(el.arguments),allowed:!!el.allowed}
allowed: !!el.allowed
})));
})
.catch(this.$fhcAlert.handleSystemError);