Ajout fonts

This commit is contained in:
2021-04-06 08:03:44 +02:00
parent 21590b4331
commit 7e0a67fbc2
2 changed files with 3 additions and 3 deletions

View File

@ -29,9 +29,9 @@ export class VadentisUtility extends Entity {
/* -------------------------------------------- */
static createDirectOptionList( min, max) {
let options = []
let options = {};
for(let i=min; i<=max; i++) {
options.push( i ) ;
options[i] = i;
}
return options;
}