courrier formatting
This commit is contained in:
parent
d1a8b3f350
commit
f38e1bfc47
@ -158,7 +158,10 @@ export default function EmailListItem({
|
|||||||
</span>
|
</span>
|
||||||
<button
|
<button
|
||||||
className="h-6 w-6 text-gray-400 hover:text-yellow-400"
|
className="h-6 w-6 text-gray-400 hover:text-yellow-400"
|
||||||
onClick={onToggleStarred}
|
onClick={(e) => {
|
||||||
|
e.stopPropagation();
|
||||||
|
onToggleStarred(e);
|
||||||
|
}}
|
||||||
>
|
>
|
||||||
<Star className={`h-4 w-4 ${email.flags?.flagged ? 'fill-yellow-400 text-yellow-400' : ''}`} />
|
<Star className={`h-4 w-4 ${email.flags?.flagged ? 'fill-yellow-400 text-yellow-400' : ''}`} />
|
||||||
</button>
|
</button>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user