Version: v12.1p_2020-04-10
The isomorphic\system\modules-debug\ISC_Grids.js file (ie the DEBUG version)
contains an unwanted extra colon (:) character at line 22814:
shouldSkipLineBreaks : function (field) : {
var skipLineBreaks = field.skipLineBreaks;
return skipLineBreaks || skipLineBreaks != false && this.skipLineBreaks;
},
Removing the colon (before the opening brace at the end of line 22814) resolves the issue.
Thanks
The isomorphic\system\modules-debug\ISC_Grids.js file (ie the DEBUG version)
contains an unwanted extra colon (:) character at line 22814:
shouldSkipLineBreaks : function (field) : {
var skipLineBreaks = field.skipLineBreaks;
return skipLineBreaks || skipLineBreaks != false && this.skipLineBreaks;
},
Removing the colon (before the opening brace at the end of line 22814) resolves the issue.
Thanks
Comment