ui: scratchpad: allow pretest for validAs lang entries

pull/581/head
undefined 1 year ago
parent 5b78afeba5
commit 68e70ec99e
No known key found for this signature in database

@ -101,10 +101,12 @@ export default connect(mapStateToProps, mapDispatchToProps)(class ScratchpadTool
render() {
let canUsePretest = ['default', 'fileio'].includes(UiContext.pdoc.config?.type);
if (UiContext.pdoc.config?.type === 'remote_judge') {
if (availableLangs[this.props.editorLang].pretest) canUsePretest = true;
const langInfo = availableLangs[this.props.editorLang];
if (UiContext.pdoc.config?.type === 'remote_judge' && langInfo) {
if (langInfo.pretest) canUsePretest = true;
if (langInfo.validAs && !langInfo.hidden) canUsePretest = true;
}
if (availableLangs[this.props.editorLang]?.pretest === false) canUsePretest = false;
if (langInfo?.pretest === false) canUsePretest = false;
return (
<Toolbar>
{canUsePretest && (

Loading…
Cancel
Save