We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f17132 commit 2588f3aCopy full SHA for 2588f3a
client/src/components/JsonView.tsx
@@ -188,7 +188,7 @@ const JsonNode = memo(
188
<span
189
className={`${typeStyleMap.string} cursor-pointer group-hover:text-green-500`}
190
onClick={() => setIsExpanded(!isExpanded)}
191
- title={isExpanded ? "클릭하여 축소" : "클릭하여 전체 보기"}
+ title={isExpanded ? "Click to collapse" : "Click to expand"}
192
>
193
{isExpanded ? `"${value}"` : `"${value.slice(0, maxLength)}..."`}
194
</span>
0 commit comments