diff --git a/src/components/mins_left_to_practice_today.vue b/src/components/mins_left_to_practice_today.vue
index 18ce5ab..468e187 100644
--- a/src/components/mins_left_to_practice_today.vue
+++ b/src/components/mins_left_to_practice_today.vue
@@ -4,27 +4,33 @@
export default {
data() {
return {
- time_left:0
+ time_left:0,
+ mins_practiced_today:0
}
},
methods: {
refresh(){
axios.get(import.meta.env.VITE_PRACTICE_TRACKER_API_URL+'mins-left-to-practice-today').then((response)=>{
this.time_left= response.data.time_left;
+ this.mins_practiced_today = response.data.mins_practiced_today;
})
}
},
mounted() {
axios.get(import.meta.env.VITE_PRACTICE_TRACKER_API_URL+'mins-left-to-practice-today').then((response)=>{
this.time_left= response.data.time_left;
+ this.mins_practiced_today = response.data.mins_practiced_today;
})
}
}
- Mins Left to Practice Today
+ Time Summary
+ Mins Left to Practice Today
{{time_left}}
+ Mins Practiced Today
+ {{mins_practiced_today}}