Skip to content

Commit 2588f3a

Browse files
committed
Change tooltip title from Korean to English
1 parent 1f17132 commit 2588f3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/src/components/JsonView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ const JsonNode = memo(
188188
<span
189189
className={`${typeStyleMap.string} cursor-pointer group-hover:text-green-500`}
190190
onClick={() => setIsExpanded(!isExpanded)}
191-
title={isExpanded ? "클릭하여 축소" : "클릭하여 전체 보기"}
191+
title={isExpanded ? "Click to collapse" : "Click to expand"}
192192
>
193193
{isExpanded ? `"${value}"` : `"${value.slice(0, maxLength)}..."`}
194194
</span>

0 commit comments

Comments
 (0)