mirror of https://gitee.com/answerdev/answer.git
Merge branch 'feat/ui-0.5.0' into 'test'
fix: synonyms tag style adjustment See merge request opensource/answer!311
This commit is contained in:
commit
b5e32e96ab
|
@ -189,7 +189,6 @@ const TagIntroduction = () => {
|
|||
<div className="mb-3">
|
||||
{t('synonyms.text')}{' '}
|
||||
<Tag
|
||||
className="me-2"
|
||||
data={{
|
||||
slug_name: tagName || '',
|
||||
main_tag_slug_name: '',
|
||||
|
@ -212,7 +211,7 @@ const TagIntroduction = () => {
|
|||
<div className="m-n1">
|
||||
{synonymsData.synonyms.map((item) => {
|
||||
return (
|
||||
<Tag key={item.tag_id} className="m-2" data={item} />
|
||||
<Tag key={item.tag_id} className="m-1" data={item} />
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue