fix: event of keyboard "enter" in text generator app (#3823)

This commit is contained in:
KVOJJJin
2024-04-25 13:58:06 +08:00
committed by GitHub
parent 2a64ce740e
commit 1a7b4c42ab
2 changed files with 6 additions and 1 deletions

View File

@@ -232,7 +232,6 @@ const TagSelector: FC<TagSelectorProps> = ({
<div className='grow text-xs text-start leading-[18px] font-normal truncate'>
{!triggerContent ? t('common.tag.addTag') : triggerContent}
</div>
<span className='hidden absolute top-[-21px] left-[50%] translate-x-[-50%] px-2 py-[3px] border-[0.5px] border-black/5 rounded-md bg-gray-25 text-gray-700 text-xs font-medium leading-[18px] group-hover/tip:block'>{t('common.tag.editTag')}</span>
</div>
)
}