diff --git a/src/components/SharedLinks.astro b/src/components/SharedLinks.astro index 07017d6..52ddd97 100644 --- a/src/components/SharedLinks.astro +++ b/src/components/SharedLinks.astro @@ -86,7 +86,15 @@ const byLabel = resolve({ en: 'by', ru: 'от' }, locale); return (
  • {resolve(item.text, locale)} ↗ - {hasAuthor && <> {byLabel} {item.author} {item.author_text} ↗} + {hasAuthor && ( + <> + {' '}{byLabel}{' '} + {item.author}{' '} + + {item.author_text} ↗ + + +)}
  • ); })}