mirror of
https://github.com/mastodon/mastodon.git
synced 2025-11-28 02:20:47 +00:00
This commit is contained in:
parent
00cbc1b910
commit
8abec0ffcb
|
|
@ -112,18 +112,6 @@ const BoostOrQuoteMenu: FC<ReblogButtonProps> = ({ status, counters }) => {
|
||||||
const statusId = status.get('id') as string;
|
const statusId = status.get('id') as string;
|
||||||
const wasBoosted = !!status.get('reblogged');
|
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(() => {
|
const showLoginPrompt = useCallback(() => {
|
||||||
dispatch(
|
dispatch(
|
||||||
openModal({
|
openModal({
|
||||||
|
|
@ -199,7 +187,12 @@ const BoostOrQuoteMenu: FC<ReblogButtonProps> = ({ status, counters }) => {
|
||||||
)}
|
)}
|
||||||
icon='retweet'
|
icon='retweet'
|
||||||
iconComponent={boostIcon}
|
iconComponent={boostIcon}
|
||||||
counter={count}
|
counter={
|
||||||
|
counters
|
||||||
|
? (status.get('reblogs_count') as number) +
|
||||||
|
(status.get('quotes_count') as number)
|
||||||
|
: undefined
|
||||||
|
}
|
||||||
active={isReblogged}
|
active={isReblogged}
|
||||||
/>
|
/>
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user