fix: leading space when hiding mentions
parent
fab1eb13b3
commit
359cc4935b
|
@ -529,7 +529,7 @@ function transformCollapseMentions(status?: mastodon.v1.Status, inReplyToStatus?
|
||||||
// But this covers the majority of cases.
|
// But this covers the majority of cases.
|
||||||
const showMentions = !(contextualMentionsCount === 0 || (mentionsCount === 1 && status?.inReplyToAccountId))
|
const showMentions = !(contextualMentionsCount === 0 || (mentionsCount === 1 && status?.inReplyToAccountId))
|
||||||
const grouped = contextualMentionsCount > 2
|
const grouped = contextualMentionsCount > 2
|
||||||
if (grouped)
|
if (!showMentions || grouped)
|
||||||
trimContentStart?.()
|
trimContentStart?.()
|
||||||
|
|
||||||
const contextualChildren = children.slice(mentions.length)
|
const contextualChildren = children.slice(mentions.length)
|
||||||
|
|
Loading…
Reference in New Issue