Minor css for scripts

This commit is contained in:
2023-06-27 12:33:38 -05:00
parent 51a87db2d1
commit ba4118d682
2 changed files with 3 additions and 2 deletions

View File

@ -62,6 +62,7 @@ function ScriptDocsForm({helpText, exampleCode, aceEditorHeight}: Props): JSX.El
width="100%" width="100%"
showPrintMargin={false} showPrintMargin={false}
height="100%" height="100%"
style={{borderBottomRightRadius: "1rem", borderBottomLeftRadius: "1rem"}}
/> />
</Typography> </Typography>
</Box> </Box>

View File

@ -142,7 +142,7 @@ export default function ScriptViewer({scriptId, associatedScriptTableName, assoc
else // MULTI AD_HOC else // MULTI AD_HOC
{ {
// todo - not yet supported // todo - not yet supported
console.log(`Script Type File Mode of ${fileMode} is not yet supportred.`); console.log(`Script Type File Mode of ${fileMode} is not yet supported.`);
} }
setScriptTypeFileSchemaList(scriptTypeFileSchemaList); setScriptTypeFileSchemaList(scriptTypeFileSchemaList);
@ -499,7 +499,7 @@ export default function ScriptViewer({scriptId, associatedScriptTableName, assoc
editorProps={{$blockScrolling: true}} editorProps={{$blockScrolling: true}}
setOptions={{useWorker: false}} setOptions={{useWorker: false}}
width="100%" width="100%"
height="400px" height="368px"
value={getSelectedFileCode()} value={getSelectedFileCode()}
style={{borderTop: "1px solid lightgray", borderBottomRightRadius: "1rem"}} style={{borderTop: "1px solid lightgray", borderBottomRightRadius: "1rem"}}
/> />