Skip to content

Commit c1468b9

Browse files
authored
Merge pull request #726 from Adamant-im/fix/broken-tx-list
fix: tx list broken
2 parents b8ae1cc + ff06fdb commit c1468b9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/lib/notifications.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ class TabNotification extends Notification {
178178
this.interval = window.setInterval(() => {
179179
if (this.unreadAmount && this.showAmount) {
180180
if (this.unreadAmount < 100) {
181-
document.title = this.i18n.tc('notifications.tabMessage.few', this.unreadAmount)
181+
document.title = this.i18n.t('notifications.tabMessage.few', this.unreadAmount)
182182
} else {
183183
document.title = this.i18n.t('notifications.tabMessage.many')
184184
}

src/views/Transactions.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,13 +125,13 @@ export default {
125125
const count = addresses.length
126126
return addresses.includes(this.$store.state[this.crypto.toLowerCase()].address)
127127
? `${
128-
this.$tc('transaction.me') +
128+
this.$t('transaction.me') +
129129
' (' +
130130
this.$store.state[this.cryptoModule].address +
131131
') ' +
132-
this.$tc('transaction.addresses', count - 1)
132+
this.$t('transaction.addresses', count - 1)
133133
}`
134-
: addresses[0] + ' ' + this.$tc('transaction.addresses', count - 1)
134+
: addresses[0] + ' ' + this.$t('transaction.addresses', count - 1)
135135
},
136136
goToTransaction(transactionId) {
137137
this.$router.push({

0 commit comments

Comments
 (0)