mirror of
https://github.com/aljazceru/rabbit.git
synced 2025-12-18 22:44:26 +01:00
fix: repost icon not shown in iOS
This commit is contained in:
@@ -39,7 +39,7 @@ const ReactionDisplay: Component<ReactionDisplayProps> = (props) => {
|
|||||||
return (
|
return (
|
||||||
// if the reacted event is not found, it should be a removed event
|
// if the reacted event is not found, it should be a removed event
|
||||||
<Show when={!isRemoved() && !shouldMuteEvent(props.event)}>
|
<Show when={!isRemoved() && !shouldMuteEvent(props.event)}>
|
||||||
<div class="flex gap-1 px-1 text-sm">
|
<div class="flex gap-1 pl-[2px] text-sm">
|
||||||
<div class="notification-icon flex max-w-[64px] place-items-center">
|
<div class="notification-icon flex max-w-[64px] place-items-center">
|
||||||
<EmojiDisplay reactionTypes={event().toReactionTypes()} />
|
<EmojiDisplay reactionTypes={event().toReactionTypes()} />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -26,8 +26,10 @@ const Repost: Component<RepostProps> = (props) => {
|
|||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<div class="flex items-center gap-1 text-xs">
|
<div class="flex items-center gap-1 text-xs">
|
||||||
<div class="flex h-4 w-4 shrink-0 place-items-center text-green-500" aria-hidden="true">
|
<div class="flex shrink-0 place-items-center pl-[2px]" aria-hidden="true">
|
||||||
<ArrowPathRoundedSquare />
|
<span class="h-4 w-4 text-green-500">
|
||||||
|
<ArrowPathRoundedSquare />
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="flex min-w-0 flex-1 overflow-hidden">
|
<div class="flex min-w-0 flex-1 overflow-hidden">
|
||||||
<button
|
<button
|
||||||
|
|||||||
Reference in New Issue
Block a user