Skip to content
Snippets Groups Projects
Commit d3c93201 authored by Daniel Manja's avatar Daniel Manja
Browse files

Add placeholder for empty executable field

parent b843618a
No related branches found
No related tags found
2 merge requests!673Automated merge from preview to main,!668Fix Slurm Generator Issues
......@@ -788,6 +788,9 @@
outputText.innerText += '\n\n# Execute parallel application '
outputText.innerText += '\nsrun '
+ document.getElementById('executable').value;
} else {
outputText.innerText += '\n\n# Execute parallel application '
outputText.innerText += '\n# srun <file to execute>'
}
if (document.getElementById('check-workspace').checked && document.getElementById('check-delete').checked) {
......@@ -1265,6 +1268,12 @@
select.appendChild(option);
}
// set up info texts
// const infoMap = JSON.parse(text);
// for (const [key, value] of Object.entries(infoMap)) {
// document.getElementById(key + '-info').title = value['text'];
// }
// initialize UI
partitionLimitChange();
fillInfo();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment