Skip to content

Commit ddd9152

Browse files
author
Bruno Bergher
committed
Missing localization call
1 parent 7a77b91 commit ddd9152

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webview-ui/src/components/chat/TaskHeader.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ const TaskHeader = ({
101101
<div className="flex justify-between items-center gap-0">
102102
<div className="flex items-center select-none grow min-w-0">
103103
<div className="whitespace-nowrap overflow-hidden text-ellipsis grow min-w-0">
104-
{isTaskExpanded && <span className="font-bold">Task Details</span>}
104+
{isTaskExpanded && <span className="font-bold">{t("chat:task.title")}</span>}
105105
{!isTaskExpanded && (
106106
<div>
107-
<span className="font-bold mr-1">Task</span>
107+
<span className="font-bold mr-1">{t("chat:task.title")}</span>
108108
<Mention text={task.text} />
109109
</div>
110110
)}

0 commit comments

Comments
 (0)