Yuken Tezuka 3 лет назад
Родитель
Сommit
c848611dcf
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      packages/app/src/components/TagCloudBox.tsx

+ 2 - 2
packages/app/src/components/TagCloudBox.tsx

@@ -28,9 +28,9 @@ const TagCloudBox: FC<Props> = memo((props:(Props & typeof defaultProps)) => {
     const queryParam = `tag:${tag.name}`;
     return (
       <Link
-        key={tag.name} href={`/_search?q=${encodeURIComponent(queryParam)}`}
+        key={tag.name} href={`/_search?q=${encodeURIComponent(queryParam)}`} className="grw-tag-label badge badge-secondary mr-2"
       >
-        <a className="grw-tag-label badge badge-secondary mr-2">
+        <a>
           {tagNameFormat}
         </a>
       </Link>