mirror of
https://github.com/Radarr/Radarr
synced 2025-12-15 21:03:27 +01:00
Fixed: Duplicate changes in app updated modal
[common]
This commit is contained in:
parent
f890aadffa
commit
fcebfe6759
1 changed files with 2 additions and 2 deletions
|
|
@ -89,12 +89,12 @@ function AppUpdatedModalContent(props) {
|
|||
|
||||
<UpdateChanges
|
||||
title={translate('New')}
|
||||
changes={update.changes.new}
|
||||
changes={Array.from(new Set(update.changes.new))}
|
||||
/>
|
||||
|
||||
<UpdateChanges
|
||||
title={translate('Fixed')}
|
||||
changes={update.changes.fixed}
|
||||
changes={Array.from(new Set(update.changes.fixed))}
|
||||
/>
|
||||
</div>
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue