chore(profile): added information about no recent history

This commit is contained in:
2026-02-18 02:31:47 +01:00
parent 527c929b53
commit 448c6e387e
3 changed files with 14 additions and 2 deletions
@@ -14,6 +14,10 @@
</div> </div>
<div class="history-list-box"> <div class="history-list-box">
<div v-if="combinedJournal.length == 0" class="no-recent-history text--grayed">
{{ t('profile.list.no-recent-history') }}
</div>
<router-link <router-link
v-for="entry in combinedJournal" v-for="entry in combinedJournal"
:to=" :to="
@@ -269,6 +273,12 @@ async function fetchPlayerJournal() {
} }
} }
.no-recent-history {
padding: 1em;
font-size: 1.25em;
font-weight: bold;
}
.entry-top-date { .entry-top-date {
display: flex; display: flex;
align-items: center; align-items: center;
+2 -1
View File
@@ -666,7 +666,8 @@
"list": { "list": {
"for": "for", "for": "for",
"online-since": "online since" "online-since": "online since",
"no-recent-history": "No recent activity in the simulator :("
} }
} }
} }
+2 -1
View File
@@ -651,7 +651,8 @@
"list": { "list": {
"for": "dla", "for": "dla",
"online-since": "online od" "online-since": "online od",
"no-recent-history": "Brak ostatniej aktywności w symulatorze :("
} }
} }
} }