mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-09 18:05:09 +00:00
parent
4b23b78efe
commit
4ec200ae6d
|
@ -92,6 +92,7 @@ export class Profile extends Component<any, ProfileState> {
|
|||
|
||||
this.state = this.emptyState;
|
||||
this.handleSortChange = this.handleSortChange.bind(this);
|
||||
this.handlePageChange = this.handlePageChange.bind(this);
|
||||
|
||||
this.parseMessage = this.parseMessage.bind(this);
|
||||
this.subscription = wsSubscribe(this.parseMessage);
|
||||
|
|
|
@ -1432,8 +1432,8 @@ export function initializeSite(site: GetSiteResponse) {
|
|||
i18n.changeLanguage(getLanguage());
|
||||
}
|
||||
|
||||
let SHORTNUM_SI_FORMAT = new Intl.NumberFormat("en-US", {
|
||||
maximumFractionDigits: 1,
|
||||
const SHORTNUM_SI_FORMAT = new Intl.NumberFormat("en-US", {
|
||||
maximumSignificantDigits: 3,
|
||||
//@ts-ignore
|
||||
notation: "compact",
|
||||
compactDisplay: "short",
|
||||
|
|
Loading…
Reference in a new issue