ordering prompts in the menu: first the default prompts, then the custom in alphabetical order by "name"
This commit is contained in:
parent
1a10382053
commit
e9cb2fedeb
2 changed files with 4 additions and 2 deletions
|
|
@ -46,7 +46,8 @@ export class mzta_Menus {
|
|||
this.allPrompts = [];
|
||||
this.rootMenu = [];
|
||||
this.menu_listeners = {};
|
||||
this.allPrompts = await getPrompts(true);
|
||||
this.allPrompts = await getPrompts(true);
|
||||
this.allPrompts.sort((a, b) => a.name.localeCompare(b.name));
|
||||
this.allPrompts.forEach((prompt) => {
|
||||
this.addAction(prompt)
|
||||
});
|
||||
|
|
|
|||
|
|
@ -144,8 +144,9 @@ export async function getPrompts(onlyEnabled = false){
|
|||
let output = defaultPrompts.concat(customPrompts);
|
||||
if(onlyEnabled){
|
||||
output = output.filter(obj => obj.enabled != 0);
|
||||
}
|
||||
}else{ // order only if we are not filtering, the filtering is for the menus and we are ordering there after i18n
|
||||
output.sort((a, b) => a.id.localeCompare(b.id));
|
||||
}
|
||||
for(let i=1; i<=output.length; i++){
|
||||
output[i-1].idnum = i;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue