-
Here is the picture
+
+
+ {{ objective.name }}
+ ({{ objective.position }})
+
-
Here is the objective name
-
-
+
+
+
-
-
diff --git a/src/components/Battleground/Timer.vue b/src/components/Battleground/Timer.vue
index 4dbcbf9..59193aa 100644
--- a/src/components/Battleground/Timer.vue
+++ b/src/components/Battleground/Timer.vue
@@ -30,7 +30,10 @@
return (this.currentTime % 60).toLocaleString('en', {minimumIntegerDigits: 2})
},
minutes: function () {
- return (Math.floor(this.currentTime / 60) % 60)
+ let minutes = Math.floor(this.currentTime / 60) % 60
+ return this.displayHours > 0
+ ? minutes.toLocaleString('en', {minimumIntegerDigits: 2})
+ : minutes
},
hours: function () {
return (Math.floor(this.currentTime / 3600) % 24)
diff --git a/src/components/BattlegroundSelector.vue b/src/components/BattlegroundSelector.vue
index c14958c..a396a70 100644
--- a/src/components/BattlegroundSelector.vue
+++ b/src/components/BattlegroundSelector.vue
@@ -12,7 +12,7 @@