landscape: edit comments include leading sig

Fixes #4212.
This commit is contained in:
Matilde Park 2021-01-05 21:47:38 -05:00
parent 3abfcbd4ea
commit bd1148e171

View File

@ -77,7 +77,7 @@ export function Comments(props: CommentsProps) {
if ('text' in curr) {
val = val + curr.text;
} else if ('mention' in curr) {
val = val + curr.mention;
val = val + `~${curr.mention}`;
} else if ('url' in curr) {
val = val + curr.url;
} else if ('code' in curr) {