mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-09 21:29:11 +00:00
Only show trash can when turnId is present
This commit is contained in:
@@ -744,6 +744,7 @@ const ChatMessage = forwardRef<HTMLDivElement, ChatMessageProps>((props, ref) =>
|
|||||||
/>
|
/>
|
||||||
</button>
|
</button>
|
||||||
))}
|
))}
|
||||||
|
{props.chatMessage.turnId && (
|
||||||
<button
|
<button
|
||||||
title="Delete"
|
title="Delete"
|
||||||
className={`${styles.deleteButton}`}
|
className={`${styles.deleteButton}`}
|
||||||
@@ -754,6 +755,7 @@ const ChatMessage = forwardRef<HTMLDivElement, ChatMessageProps>((props, ref) =>
|
|||||||
className="hsl(var(--muted-foreground)) hover:text-red-500"
|
className="hsl(var(--muted-foreground)) hover:text-red-500"
|
||||||
/>
|
/>
|
||||||
</button>
|
</button>
|
||||||
|
)}
|
||||||
<button
|
<button
|
||||||
title="Copy"
|
title="Copy"
|
||||||
className={`${styles.copyButton}`}
|
className={`${styles.copyButton}`}
|
||||||
|
|||||||
Reference in New Issue
Block a user