mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-05 13:21:25 -05:00
Fixed: Duplicate changes in app updated modal
[common]
This commit is contained in:
@@ -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>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user