mirror of
https://github.com/stashapp/stash.git
synced 2026-04-15 03:23:23 +02:00
PR linting fixes
This commit is contained in:
parent
88255ce018
commit
16f31ba796
2 changed files with 2 additions and 6 deletions
|
|
@ -121,4 +121,4 @@ func (m *schema85PostMigrator) migrate(ctx context.Context) error {
|
|||
|
||||
func init() {
|
||||
sqlite.RegisterPostMigration(85, post85)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -110,11 +110,7 @@ const FileInfoPanel: React.FC<IFileInfoPanelProps> = (
|
|||
values={{ value: intl.formatNumber(props.file.frame_rate ?? 0) }}
|
||||
/>
|
||||
</TextField>
|
||||
<TextField
|
||||
id="frames"
|
||||
value={`${props.file.frames ?? 0}`}
|
||||
truncate
|
||||
/>
|
||||
<TextField id="frames" value={`${props.file.frames ?? 0}`} truncate />
|
||||
<TextField id="bitrate">
|
||||
<FormattedMessage
|
||||
id="megabits_per_second"
|
||||
|
|
|
|||
Loading…
Reference in a new issue