1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00

New: Highlight currently installed version on System: Updates

This commit is contained in:
Mark McDowall
2019-02-07 18:44:22 -08:00
parent 29f905b942
commit 69627911b3
3 changed files with 26 additions and 4 deletions
+16 -2
View File
@@ -19,6 +19,7 @@ class Updates extends Component {
render() {
const {
currentVersion,
isFetching,
isPopulated,
updatesError,
@@ -133,13 +134,25 @@ class Updates extends Component {
<div className={styles.date}>{formatDate(update.releaseDate, shortDateFormat)}</div>
{
update.branch !== 'master' &&
update.branch === 'master' ?
null:
<Label
className={styles.branch}
className={styles.label}
>
{update.branch}
</Label>
}
{
update.version === currentVersion ?
<Label
className={styles.label}
kind={kinds.SUCCESS}
>
Currently Installed
</Label> :
null
}
</div>
{
@@ -189,6 +202,7 @@ class Updates extends Component {
}
Updates.propTypes = {
currentVersion: PropTypes.string.isRequired,
isFetching: PropTypes.bool.isRequired,
isPopulated: PropTypes.bool.isRequired,
updatesError: PropTypes.object,