mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-03 05:29:12 +00:00
Show action bar on last chat message without hover
This commit is contained in:
@@ -146,6 +146,7 @@ interface ChatMessageProps {
|
||||
isMobileWidth: boolean;
|
||||
customClassName?: string;
|
||||
borderLeftColor?: string;
|
||||
isLastMessage?: boolean;
|
||||
}
|
||||
|
||||
interface TrainOfThoughtProps {
|
||||
@@ -349,7 +350,7 @@ export default function ChatMessage(props: ChatMessageProps) {
|
||||
</div>
|
||||
<div className={styles.chatFooter}>
|
||||
{
|
||||
(isHovering || props.isMobileWidth) &&
|
||||
(isHovering || props.isMobileWidth || props.isLastMessage) &&
|
||||
(
|
||||
<>
|
||||
<div title={formatDate(props.chatMessage.created)} className={`text-gray-400 relative top-0 left-4`}>
|
||||
|
||||
Reference in New Issue
Block a user