Fixed: Prevent UI errors for authors with invalid quality and metadata profiles

This commit is contained in:
Bogdan
2024-11-02 01:02:15 +02:00
parent e0d904fa69
commit b8bd645560
6 changed files with 21 additions and 19 deletions
@@ -209,7 +209,7 @@ class AuthorIndexRow extends Component {
key={name}
className={styles[name]}
>
{qualityProfile.name}
{qualityProfile?.name ?? ''}
</VirtualTableRowCell>
);
}
@@ -220,7 +220,7 @@ class AuthorIndexRow extends Component {
key={name}
className={styles[name]}
>
{metadataProfile.name}
{metadataProfile?.name ?? ''}
</VirtualTableRowCell>
);
}