This commit is contained in:
@@ -1144,10 +1144,17 @@ async function buildRecords(listData, columndefinitions, ridColumnOpenable) {
|
|||||||
|
|
||||||
break;
|
break;
|
||||||
case 10: //enum
|
case 10: //enum
|
||||||
display = window.$gz.enums.get(
|
if (display != 0) {
|
||||||
columndefinitions[iColumn].et,
|
display = `[${window.$gz.enums.get(
|
||||||
display
|
columndefinitions[iColumn].et,
|
||||||
);
|
display
|
||||||
|
)}]`;
|
||||||
|
} else {
|
||||||
|
display = window.$gz.enums.get(
|
||||||
|
columndefinitions[iColumn].et,
|
||||||
|
display
|
||||||
|
);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case 14: //MemorySize (file size)
|
case 14: //MemorySize (file size)
|
||||||
display = window.$gz.locale.humanFileSize(
|
display = window.$gz.locale.humanFileSize(
|
||||||
|
|||||||
@@ -558,7 +558,7 @@ export default {
|
|||||||
noSemanticValidation: false,
|
noSemanticValidation: false,
|
||||||
noSyntaxValidation: false,
|
noSyntaxValidation: false,
|
||||||
noSuggestionDiagnostics: false,
|
noSuggestionDiagnostics: false,
|
||||||
diagnosticCodesToIgnore: [2393, 7044] //this hides a weird error about ayPrepareData being declared more than once which I think is more related to it being barebones in there
|
diagnosticCodesToIgnore: [2393, 7044] //2393 hides a weird error about ayPrepareData being declared more than once which I think is more related to it being barebones in there, 7044 hides a useless prompt about ayData parameter not being strongly typed
|
||||||
});
|
});
|
||||||
monaco.languages.typescript.javascriptDefaults.setCompilerOptions({
|
monaco.languages.typescript.javascriptDefaults.setCompilerOptions({
|
||||||
target: monaco.languages.typescript.ScriptTarget.ES6,
|
target: monaco.languages.typescript.ScriptTarget.ES6,
|
||||||
|
|||||||
Reference in New Issue
Block a user