mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-02-18 00:02:02 +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`)
|
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…
Add table
Reference in a new issue