Enable tags inside of quotes (#3041)
* enable tags for quote posts * mentions too * just disable pointer events instead * apply fix for both web and native * minimize diff
This commit is contained in:
parent
e950463f71
commit
f016cdbca9
2 changed files with 22 additions and 25 deletions
|
@ -91,7 +91,10 @@ export function QuoteEmbed({
|
|||
const richText = React.useMemo(
|
||||
() =>
|
||||
quote.text.trim()
|
||||
? new RichTextAPI({text: quote.text, facets: quote.facets})
|
||||
? new RichTextAPI({
|
||||
text: quote.text,
|
||||
facets: quote.facets,
|
||||
})
|
||||
: undefined,
|
||||
[quote.text, quote.facets],
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue