Skip to content

Commit 042f1dd

Browse files
committed
fix more copy
1 parent 699f8f8 commit 042f1dd

File tree

3 files changed

+4
-4
lines changed
  • web/oss/src

3 files changed

+4
-4
lines changed

web/oss/src/components/Playground/Components/Drawers/FocusDrawer/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ const PlaygroundFocusDrawer = () => {
6868
size="small"
6969
/>
7070
</div>
71-
<Text className="text-sm font-medium">Testcase {currentRowIndex + 1}</Text>
71+
<Text className="text-sm font-medium">Test case {currentRowIndex + 1}</Text>
7272
</div>
7373
}
7474
mainContent={<FocusDrawerContent />}

web/oss/src/components/Playground/Components/PlaygroundGenerations/assets/GenerationCompletionRow/SingleView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const SingleView = ({
131131
size="small"
132132
/>
133133
{testCaseNumber && (
134-
<span className="text-sm text-gray-500">Testcase {testCaseNumber}</span>
134+
<span className="text-sm text-gray-500" {testCaseNumber}</span>
135135
)}
136136
<div className="flex-1" />
137137
<div className="flex items-center gap-1 opacity-0 group-hover/item:opacity-100 transition-opacity">
@@ -200,7 +200,7 @@ const SingleView = ({
200200
size="small"
201201
/>
202202
{testCaseNumber && (
203-
<span className="text-sm text-gray-500">Testcase {testCaseNumber}</span>
203+
<span className="text-sm text-gray-500">Test case {testCaseNumber}</span>
204204
)}
205205
<div className="flex-1" />
206206
<div className="flex items-center gap-1 opacity-0 group-hover/header:opacity-100 transition-opacity">

web/oss/src/state/entities/testcase/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ const TestcaseViewerModal = ({testcaseId}: {testcaseId: string}) => {
164164

165165
return (
166166
<Modal>
167-
<h2>Testcase Details</h2>
167+
<h2>Test case Details</h2>
168168
<pre>{JSON.stringify(queryState.data, null, 2)}</pre>
169169
</Modal>
170170
)

0 commit comments

Comments
 (0)