mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Spacing when sharing title + url
This commit is contained in:
parent
3362a5b016
commit
54b5bf6d0f
3 changed files with 4 additions and 4 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -258,8 +258,8 @@ export function ArticleContainer(props: ArticleContainerProps): JSX.Element {
|
|||
const share = () => {
|
||||
if (navigator.share) {
|
||||
navigator.share({
|
||||
title: title ?? props.article.title,
|
||||
text: title ?? props.article.title,
|
||||
title: (title ?? props.article.title) + '\n',
|
||||
text: (title ?? props.article.title) + '\n',
|
||||
url: props.article.originalArticleUrl,
|
||||
})
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue