mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-07-05 08:26:13 +00:00
comment console.log
This commit is contained in:
parent
3040ed9483
commit
a26d278510
@ -4,9 +4,9 @@ const fetchScopes = () => {
|
|||||||
return response.json();
|
return response.json();
|
||||||
}
|
}
|
||||||
}).then(data => {
|
}).then(data => {
|
||||||
console.log(data);
|
//console.log(data);
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
console.log(data);
|
//console.log(data);
|
||||||
resolve(data.results);
|
resolve(data.results);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -153,9 +153,9 @@ export default {
|
|||||||
created() {
|
created() {
|
||||||
this.initAddressContext();
|
this.initAddressContext();
|
||||||
|
|
||||||
console.log('ac.locationStatus', this.accompanyingCourse.locationStatus);
|
//console.log('ac.locationStatus', this.accompanyingCourse.locationStatus);
|
||||||
console.log('ac.location (temporary location)', this.accompanyingCourse.location);
|
//console.log('ac.location (temporary location)', this.accompanyingCourse.location);
|
||||||
console.log('ac.personLocation', this.accompanyingCourse.personLocation);
|
//console.log('ac.personLocation', this.accompanyingCourse.personLocation);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -48,7 +48,7 @@ let initPromise = Promise.all([scopesPromise, accompanyingCoursePromise])
|
|||||||
return state.accompanyingCourse.location !== null;
|
return state.accompanyingCourse.location !== null;
|
||||||
},
|
},
|
||||||
isScopeValid(state) {
|
isScopeValid(state) {
|
||||||
console.log('is scope valid', state.accompanyingCourse.scopes.length > 0);
|
//console.log('is scope valid', state.accompanyingCourse.scopes.length > 0);
|
||||||
return state.accompanyingCourse.scopes.length > 0;
|
return state.accompanyingCourse.scopes.length > 0;
|
||||||
},
|
},
|
||||||
validationKeys(state, getters) {
|
validationKeys(state, getters) {
|
||||||
|
@ -229,7 +229,7 @@ export default {
|
|||||||
return item.result.type + item.result.id;
|
return item.result.type + item.result.id;
|
||||||
},
|
},
|
||||||
addPriorSuggestion() {
|
addPriorSuggestion() {
|
||||||
console.log('echo', this.hasPriorSuggestion);
|
//console.log('addPriorSuggestion', this.hasPriorSuggestion);
|
||||||
if (this.hasPriorSuggestion) {
|
if (this.hasPriorSuggestion) {
|
||||||
console.log('addPriorSuggestion',);
|
console.log('addPriorSuggestion',);
|
||||||
this.suggested.unshift(this.priorSuggestion);
|
this.suggested.unshift(this.priorSuggestion);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user