Corrections signes draconiques

This commit is contained in:
Vincent Vandemeulebrouck
2021-05-18 19:51:12 +02:00
parent 8fb69b0bc5
commit a48f76e8eb
8 changed files with 26 additions and 27 deletions

View File

@ -347,6 +347,9 @@ export class TMRUtility {
return Grammar.articleDetermine(tmr.type) + ' ' + tmr.label;
}
static typeTmrName(type){
return Misc.upperFirst(TMRType[Grammar.toLowerCaseNoAccent(type)].name);
}
static listSelectedTMR(typesTMR) {
return Object.values(TMRType).map(value => Misc.upperFirst(value.name))
.sort()