diff --git a/src/components/Settings/Tabs/VueTorrent/Dashboard.vue b/src/components/Settings/Tabs/VueTorrent/Dashboard.vue index ee661594..e382b738 100644 --- a/src/components/Settings/Tabs/VueTorrent/Dashboard.vue +++ b/src/components/Settings/Tabs/VueTorrent/Dashboard.vue @@ -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 } } }