File tree 2 files changed +4
-3
lines changed
packages/app-frontend/src
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,8 @@ export default {
62
62
},
63
63
},
64
64
65
- errorCaptured (err , vm ) {
65
+ errorCaptured (err , vm , info ) {
66
+ console .error (err, vm, info)
66
67
this .fieldErrors [vm .field .key ] = err .message
67
68
},
68
69
Original file line number Diff line number Diff line change @@ -204,13 +204,13 @@ export default {
204
204
submitEdit ( ) {
205
205
if ( this . editValid ) {
206
206
this . editing = false
207
- let value = this . customField . skipSerialize ? this . editedValue : this . transformSpecialTokens ( this . editedValue , false )
207
+ let value = this . customField ? .skipSerialize ? this . editedValue : this . transformSpecialTokens ( this . editedValue , false )
208
208
// We need to send the entire custom value data object
209
209
if ( this . valueType === 'custom' ) {
210
210
value = JSON . stringify ( {
211
211
_custom : {
212
212
...this . customField ,
213
- value : this . customField . skipSerialize ? value : JSON . parse ( value ) , // Input
213
+ value : this . customField ? .skipSerialize ? value : JSON . parse ( value ) , // Input
214
214
} ,
215
215
} )
216
216
}
You can’t perform that action at this time.
0 commit comments