change error text for transactionCount is FALSE or undefind

This commit is contained in:
ogerly 2021-12-10 12:48:46 +01:00
parent ae317a95db
commit 47f8ce38b1
3 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@
},
"error": {
"change-password": "Fehler beim Ändern des Passworts",
"empty-transactionlist": "Es gibt noch keine Transaktionen unter deinem Account.",
"empty-transactionlist": "Es gab einen Fehler mit der Übermittlung der Anzahl deiner Transaktionen.",
"error": "Fehler",
"no-account": "Leider konnten wir keinen Account finden mit diesen Daten!",
"no-decay-transactionlist": "Fehler: Kein Decay vorhanden, bitte prüfe den Code!",

View File

@ -45,7 +45,7 @@
},
"error": {
"change-password": "Error while changing password",
"empty-transactionlist": "There are no transactions under your account yet.",
"empty-transactionlist": "There was an error with the transmission of the number of your transactions.",
"error": "Error",
"no-account": "Unfortunately we could not find an account to the given data!",
"no-decay-transactionlist": "Error: No Decay available, please check the code!",

View File

@ -7,7 +7,7 @@
{{ $t('error.no-transactionlist') }}
</small>
</div>
<div v-if="transactions.length === 0" class="text-right">
<div v-if="!transactionCount" class="text-right">
<b-icon icon="exclamation-triangle" class="mr-2" style="color: red"></b-icon>
<small>{{ $t('error.empty-transactionlist') }}</small>
</div>