mirror of
https://github.com/mastodon/mastodon.git
synced 2025-11-27 10:00:50 +00:00
Ensure the boost button shows a numeric value (#36805)
This commit is contained in:
parent
9addad8ce5
commit
9a42d00c12
|
|
@ -112,6 +112,18 @@ const BoostOrQuoteMenu: FC<ReblogButtonProps> = ({ status, counters }) => {
|
|||
const statusId = status.get('id') as string;
|
||||
const wasBoosted = !!status.get('reblogged');
|
||||
|
||||
let count: number | undefined;
|
||||
if (counters) {
|
||||
count = 0;
|
||||
// Ensure count is a valid integer.
|
||||
if (Number.isInteger(status.get('reblogs_count'))) {
|
||||
count += status.get('reblogs_count') as number;
|
||||
}
|
||||
if (Number.isInteger(status.get('quotes_count'))) {
|
||||
count += status.get('quotes_count') as number;
|
||||
}
|
||||
}
|
||||
|
||||
const showLoginPrompt = useCallback(() => {
|
||||
dispatch(
|
||||
openModal({
|
||||
|
|
@ -187,12 +199,7 @@ const BoostOrQuoteMenu: FC<ReblogButtonProps> = ({ status, counters }) => {
|
|||
)}
|
||||
icon='retweet'
|
||||
iconComponent={boostIcon}
|
||||
counter={
|
||||
counters
|
||||
? (status.get('reblogs_count') as number) +
|
||||
(status.get('quotes_count') as number)
|
||||
: undefined
|
||||
}
|
||||
counter={count}
|
||||
active={isReblogged}
|
||||
/>
|
||||
</Dropdown>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user