Skip to content

Commit 71a1275

Browse files
authored
chore: Video Record Size and Text (#106)
* Bump video record button * Tweak text around starting study
1 parent a4fccae commit 71a1275

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

packages/client/public/locales/en/translation.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464
"contribute": {
6565
"enterTagging": "Enter tagging",
6666
"noTaggingLeft": "No tagging left",
67-
"studyTagging": "Study Tagging",
68-
"studyTraining": "Study Training"
67+
"studyTagging": "Start Experiment",
68+
"studyTraining": "Start Experiment Training"
6969
},
7070
"datasetcontrol": {
7171
"deleteEntries": ""
@@ -182,7 +182,7 @@
182182
"es": "Spanish"
183183
},
184184
"menu": {
185-
"contribute": "Contribute",
185+
"contribute": "Experiment",
186186
"datasetControl": "Dataset Control",
187187
"datasetDownloads": "Dataset Downloads",
188188
"datasets": "Datasets",

packages/client/src/components/tag/videorecord/VideoRecordField.component.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ const VideoRecordField: React.FC<ControlProps> = (props) => {
130130
};
131131

132132
return (
133-
<Accordion>
133+
<Accordion defaultExpanded>
134134
<AccordionSummary expandIcon={<ExpandMore />}>
135135
<Typography sx={{ width: '33%' }}>{props.label}</Typography>
136136
<Typography>{props.description}</Typography>
@@ -163,7 +163,7 @@ const VideoRecordField: React.FC<ControlProps> = (props) => {
163163
<ArrowRight fontSize="large" />
164164
</IconButton>
165165
</Stack>
166-
<Button variant={recording ? 'contained' : 'outlined'} onClick={() => setRecording(!recording)}>
166+
<Button variant={recording ? 'contained' : 'outlined'} onClick={() => setRecording(!recording)} size="large">
167167
{recording ? t('tag.stopRecording') : t('tag.startRecording')}
168168
</Button>
169169
</Stack>

0 commit comments

Comments
 (0)