pipeline
This commit is contained in:
parent
f535387ac4
commit
cbac784c57
2 changed files with 6 additions and 3 deletions
|
@ -194,6 +194,12 @@
|
|||
operationsByTag[operationTag].push(operationPath);
|
||||
}
|
||||
});
|
||||
|
||||
// Sort operations within each tag alphabetically
|
||||
Object.keys(operationsByTag).forEach(tag => {
|
||||
operationsByTag[tag].sort();
|
||||
});
|
||||
|
||||
// Specify the order of tags
|
||||
let tagOrder = ["General", "Security", "Convert", "Misc", "Filter"];
|
||||
|
||||
|
|
|
@ -69,7 +69,6 @@
|
|||
<ul>
|
||||
<li>Cannot have more than one of the same operation</li>
|
||||
<li>Cannot input additional files via UI</li>
|
||||
<li>Does not work with multi-input functions yet (like merges)</li>
|
||||
<li>All files and operations run in serial mode</li>
|
||||
</ul>
|
||||
|
||||
|
@ -87,9 +86,7 @@
|
|||
|
||||
<h3>Todo</h3>
|
||||
<ul>
|
||||
<li>fix initial config selected not loading</li>
|
||||
<li>Fix operation adding requering settings to be openned and saved instead of saving defaults</li>
|
||||
<li>multiInput support</li>
|
||||
<li>Translation support</li>
|
||||
<li>offline mode checks and testing</li>
|
||||
<li>Improve operation config settings UI</li>
|
||||
|
|
Loading…
Reference in a new issue