Skip to content

Commit

Permalink
Fix about page not reacting to locale changes (#5393)
Browse files Browse the repository at this point in the history
  • Loading branch information
absidue committed Jul 12, 2024
1 parent fd25f61 commit e3f9d67
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/renderer/views/About/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@ export default defineComponent({
},
data: function () {
return {
versionNumber: `v${packageDetails.version}`,
chunks: [
versionNumber: `v${packageDetails.version}`
}
},
computed: {
chunks: function () {
return [
{
icon: ['fab', 'github'],
title: this.$t('About.Source code'),
Expand Down Expand Up @@ -74,7 +78,7 @@ export default defineComponent({
title: `${this.$t('About.Donate')} - BTC`,
content: `<a href="bitcoin:${ABOUT_BITCOIN_ADDRESS}">${ABOUT_BITCOIN_ADDRESS}</a>`
}
],
]
}
}
})

0 comments on commit e3f9d67

Please sign in to comment.