mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-07 00:54:35 +01:00
Fixed: History fails due to languages property (#3944)
* Fix languages property * fix language
This commit is contained in:
parent
e9ed08c8be
commit
2f902d412c
2 changed files with 2 additions and 2 deletions
|
|
@ -105,7 +105,7 @@ class HistoryRow extends Component {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (name === 'language') {
|
if (name === 'languages') {
|
||||||
return (
|
return (
|
||||||
<TableRowCell key={name}>
|
<TableRowCell key={name}>
|
||||||
<MovieLanguage
|
<MovieLanguage
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ export const defaultState = {
|
||||||
isVisible: true
|
isVisible: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'language',
|
name: 'languages',
|
||||||
label: 'Language',
|
label: 'Language',
|
||||||
isSortable: true,
|
isSortable: true,
|
||||||
isVisible: true
|
isVisible: true
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue