Fix sorts r1+
Ne pas mettre d'espace entre le r et une valeur commençant comme un nombre
This commit is contained in:
parent
b7cb0f0752
commit
e71088fe2f
@ -260,7 +260,7 @@ export class Mapping {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static addSpaceToNonNumeric(value) {
|
static addSpaceToNonNumeric(value) {
|
||||||
return Number.isNumeric(value) ? value : ' ' + Mapping.toVar(value)
|
return Number.isNumeric(value) || /[-\d].*/.match(String(value)) ? value : ' ' + Mapping.toVar(value)
|
||||||
}
|
}
|
||||||
|
|
||||||
static toVar(value) {
|
static toVar(value) {
|
||||||
|
Loading…
Reference in New Issue
Block a user