fixed meal plan not loading
This commit is contained in:
parent
fece7e9bd6
commit
21094eecc6
@ -47,7 +47,7 @@ export const useMealPlanStore = defineStore(_STORE_ID, {
|
||||
},
|
||||
actions: {
|
||||
refreshFromAPI(from_date, to_date) {
|
||||
if (this.currently_updating != null && (this.currently_updating[0] !== from_date || this.currently_updating[1] !== to_date)) {
|
||||
if (this.currently_updating == null || (this.currently_updating[0] !== from_date || this.currently_updating[1] !== to_date)) {
|
||||
this.currently_updating = [from_date, to_date] // certainly no perfect check but better than nothing
|
||||
|
||||
let apiClient = new ApiApiFactory()
|
||||
|
Loading…
Reference in New Issue
Block a user