Опросы
This commit is contained in:
@@ -24,7 +24,7 @@ interface UserProfileProps {
|
||||
onMessage?: (userId: string) => void;
|
||||
isSelf?: boolean;
|
||||
chatId?: string;
|
||||
onGoToMessage?: (msgId: any, createdAt: string) => Promise<void>;
|
||||
onGoToMessage?: (msgId: string, sequenceId?: number) => void;
|
||||
}
|
||||
|
||||
type TabType = 'media' | 'gif' | 'files' | 'links';
|
||||
@@ -338,7 +338,7 @@ export default function UserProfile({ userId, onClose, onMessage, isSelf: isSelf
|
||||
|
||||
<div className="absolute top-3 right-3 opacity-0 group-hover/item:opacity-100 transition-opacity z-20">
|
||||
<button
|
||||
onClick={(e) => { e.stopPropagation(); onGoToMessage?.(item.id, item.createdAt); }}
|
||||
onClick={(e) => { e.stopPropagation(); onGoToMessage?.(item.id, item.sequenceId); }}
|
||||
className="p-2.5 rounded-2xl bg-primary/95 text-white shadow-xl backdrop-blur-md hover:scale-110 active:scale-95 transition-all"
|
||||
title={t('showInChat')}
|
||||
>
|
||||
@@ -380,7 +380,7 @@ export default function UserProfile({ userId, onClose, onMessage, isSelf: isSelf
|
||||
|
||||
<div className="flex items-center gap-2">
|
||||
<button
|
||||
onClick={() => onGoToMessage?.(item.id, item.createdAt)}
|
||||
onClick={() => onGoToMessage?.(item.id, item.sequenceId)}
|
||||
className="p-3 rounded-2xl bg-white/5 opacity-0 group-hover/row:opacity-100 text-white/40 hover:text-white hover:bg-primary/20 transition-all"
|
||||
title={t('showInChat')}
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user