mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
Rename UI Component Episode to Album
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import PropTypes from 'prop-types';
|
||||
import React from 'react';
|
||||
import Label from 'Components/Label';
|
||||
|
||||
function EpisodeLanguage(props) {
|
||||
const language = props.language;
|
||||
|
||||
if (!language) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return (
|
||||
<Label>
|
||||
{language.name}
|
||||
</Label>
|
||||
);
|
||||
}
|
||||
|
||||
EpisodeLanguage.propTypes = {
|
||||
language: PropTypes.object
|
||||
};
|
||||
|
||||
export default EpisodeLanguage;
|
||||
Reference in New Issue
Block a user