Skip to content

Commit

Permalink
Fix typo in Settings.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
mgunyho authored and mifi committed Aug 6, 2023
1 parent 166a51d commit 9c633cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Settings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ const Settings = memo(({
<KeyCell>{t('File names of extracted video frames')}</KeyCell>
<td>
<Button iconBefore={captureFrameFileNameFormat === 'timestamp' ? TimeIcon : NumericalIcon} onClick={() => setCaptureFrameFileNameFormat((existing) => (existing === 'timestamp' ? 'index' : 'timestamp'))}>
{captureFrameFileNameFormat === 'timestamp' ? t('Frame timestamp') : t('File number')}
{captureFrameFileNameFormat === 'timestamp' ? t('Frame timestamp') : t('Frame number')}
</Button>
</td>
</Row>
Expand Down

0 comments on commit 9c633cb

Please sign in to comment.