diff --git a/src/views/home/Overview.vue b/src/views/home/Overview.vue
index 7868e5c945ca5d4af6371c3c82642b70e35803b4..53e8fe892624b3417d049de745fc08ff54e382cf 100644
--- a/src/views/home/Overview.vue
+++ b/src/views/home/Overview.vue
@@ -33,7 +33,7 @@
 
             <div class="row">
               <div class="col-md-2 col-sm-12">
-                <h5>{{ $t((current ? 'B#' + current.number : 'none')) }}</h5>
+                <h5>{{ (current ? 'B#' + current.number : 'none') }}</h5>
                 <h6 v-if="current">H#{{current.hash.substr(0, 10)}}</h6>
               </div>
               <div class="col">
@@ -155,6 +155,7 @@
     async mounted() {
 
       this.current = await this.$webmin.current()
+      this.currentBest = { bs: [this.current.number, this.current.hash].join('-'), count: 1 }
       this.updateHeads(await this.$webmin.heads())
       this.ws2pinfos = await this.$webmin.ws2pInfos()