[FIX] Markdown preview causes app stuck (#2303)
Co-authored-by: Diego Mello <diegolmello@gmail.com>
This commit is contained in:
parent
9b71a785aa
commit
45cc350a8c
|
@ -383,9 +383,9 @@ class Markdown extends PureComponent {
|
||||||
m = m.replace(/^\[([\s]]*)\]\(([^)]*)\)\s/, '').trim();
|
m = m.replace(/^\[([\s]]*)\]\(([^)]*)\)\s/, '').trim();
|
||||||
|
|
||||||
if (preview) {
|
if (preview) {
|
||||||
m = m.replace(/\n+/g, ' ');
|
|
||||||
m = shortnameToUnicode(m);
|
m = shortnameToUnicode(m);
|
||||||
m = removeMarkdown(m);
|
m = removeMarkdown(m);
|
||||||
|
m = m.replace(/\n+/g, ' ');
|
||||||
return (
|
return (
|
||||||
<Text accessibilityLabel={m} style={[styles.text, { color: themes[theme].bodyText }, ...style]} numberOfLines={numberOfLines} testID={testID}>
|
<Text accessibilityLabel={m} style={[styles.text, { color: themes[theme].bodyText }, ...style]} numberOfLines={numberOfLines} testID={testID}>
|
||||||
{m}
|
{m}
|
||||||
|
|
Loading…
Reference in New Issue