1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2025-01-10 16:04:54 +01:00

Merge pull request #4992 from h3poteto/fix/emoji-picker

Fix submitting form when clicking emoji picker
This commit is contained in:
AkiraFukushima 2024-07-11 21:31:15 +09:00 committed by GitHub
commit 690131e3df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -257,7 +257,11 @@ export default function Compose(props: Props) {
/>
<Popover open={popoverEmoji} handler={setPopoverEmoji}>
<PopoverHandler>
<button className="absolute top-1 right-1 text-gray-600 cursor-pointer" title={formatMessage({ id: 'compose.emoji' })}>
<button
className="absolute top-1 right-1 text-gray-600 cursor-pointer"
type="button"
title={formatMessage({ id: 'compose.emoji' })}
>
<FaFaceLaughBeam />
</button>
</PopoverHandler>