fix spacer issue
This commit is contained in:
parent
d8b913194b
commit
353c57a715
4
dist/main-bundle.js
vendored
4
dist/main-bundle.js
vendored
@ -39193,6 +39193,10 @@ function (_react_1$default$Comp) {
|
||||
spacer += String.fromCharCode(160) + String.fromCharCode(160);
|
||||
} else if (statValue < 100) {
|
||||
spacer += String.fromCharCode(160);
|
||||
|
||||
if (statValue < 10) {
|
||||
spacer += String.fromCharCode(160);
|
||||
}
|
||||
}
|
||||
|
||||
return react_1.default.createElement("div", {
|
||||
|
||||
@ -35,6 +35,9 @@ export class StatDisplay extends React.Component<IStartDisplayProps, object> {
|
||||
spacer += String.fromCharCode(160) + String.fromCharCode(160);
|
||||
} else if (statValue < 100) {
|
||||
spacer += String.fromCharCode(160);
|
||||
if (statValue < 10) {
|
||||
spacer += String.fromCharCode(160);
|
||||
}
|
||||
}
|
||||
|
||||
return (
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user