Merge branch 'dillon/34.1-jenkins-vapor' into vapor/development

This commit is contained in:
Dillon Ngo
2024-04-29 14:12:18 +08:00
@@ -86,10 +86,19 @@ export default {
},
successHandler(response) {
this.isLoading = false;
console.log('debug response: ' + JSON.stringify(response));
if (response.message) {
this.returnData = response;
} else {
}
else {
this.returnData = null;
if(window.LARAVEL_VAPOR_ENABLED){
console.log('window.LARAVEL_VAPOR_ENABLED');
let src = response.src;
if (src) {
window.location.href = src;
}
}
}
},
},