mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-25 02:45:48 +03:00
fix: Dashboard items not using $store.state reference (#601)
This commit is contained in:
parent
82d443fcbb
commit
add11c9548
1 changed files with 2 additions and 1 deletions
|
@ -95,7 +95,8 @@ export default {
|
|||
CompletedOn: i18n.t(`${localePrefix}.completion_on`)
|
||||
}
|
||||
|
||||
return properties.map(property => ({ ...property, label: localeMap[property.name] }))
|
||||
properties.forEach(property => property.label = localeMap[property.name])
|
||||
return properties
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue