Explorar el Código

Use correct group place for combineGroups

Use appropriate place instead of smallest group when creating placeholder groups between actual groups.
master
TheoryOfNekomata hace 1 año
padre
commit
a0a3251ca1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      packages/core/src/systems/en-US.ts

+ 1
- 1
packages/core/src/systems/en-US.ts Ver fichero

@@ -778,7 +778,7 @@ export const combineGroups = (groups: Group[]) => {
const firstGroupPlace = firstGroup[GROUP_PLACE_INDEX];
const groupsSorted = [];
for (let i = maxPlace; i >= minPlace; i -= 1) {
const thisGroup = groups.find((g) => g[GROUP_PLACE_INDEX] === i) ?? [...EMPTY_PLACE];
const thisGroup = groups.find((g) => g[GROUP_PLACE_INDEX] === i) ?? [EMPTY_GROUP_DIGITS, i];
groupsSorted.push(thisGroup);
}



Cargando…
Cancelar
Guardar