Fix profile paging. Fixes #416 (#417)

This commit is contained in:
Dessalines 2021-09-18 10:30:03 -04:00 committed by Dessalines
parent 447c7f0d54
commit c04f3693cb
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",