Fix profile paging. Fixes #416

This commit is contained in:
Dessalines 2021-09-18 10:27:25 -04:00
parent 4b23b78efe
commit a9a9db54ed
2 changed files with 3 additions and 2 deletions

View file

@ -92,6 +92,7 @@ export class Profile extends Component<any, ProfileState> {
this.state = this.emptyState; this.state = this.emptyState;
this.handleSortChange = this.handleSortChange.bind(this); this.handleSortChange = this.handleSortChange.bind(this);
this.handlePageChange = this.handlePageChange.bind(this);
this.parseMessage = this.parseMessage.bind(this); this.parseMessage = this.parseMessage.bind(this);
this.subscription = wsSubscribe(this.parseMessage); this.subscription = wsSubscribe(this.parseMessage);

View file

@ -1432,8 +1432,8 @@ export function initializeSite(site: GetSiteResponse) {
i18n.changeLanguage(getLanguage()); i18n.changeLanguage(getLanguage());
} }
let SHORTNUM_SI_FORMAT = new Intl.NumberFormat("en-US", { const SHORTNUM_SI_FORMAT = new Intl.NumberFormat("en-US", {
maximumFractionDigits: 1, maximumSignificantDigits: 3,
//@ts-ignore //@ts-ignore
notation: "compact", notation: "compact",
compactDisplay: "short", compactDisplay: "short",