fix msg
This commit is contained in:
@@ -38,18 +38,18 @@ onMounted(async () => {
|
|||||||
|
|
||||||
}).catch(res=>{
|
}).catch(res=>{
|
||||||
console.log("Error on token exchange:",res)
|
console.log("Error on token exchange:",res)
|
||||||
message.value = "Error authenticating on the application. Did you ask for authorization?"
|
message.value = "User not configured for this application. Contact the administrator for details."
|
||||||
visible.value = true;
|
visible.value = true;
|
||||||
|
|
||||||
});
|
});
|
||||||
}else{
|
}else{
|
||||||
message.value = "Error authenticating on the application. Did you ask for authorization?"
|
message.value = "User not configured for this application. Contact the administrator for details."
|
||||||
console.error("No token exchange with backend")
|
console.error("No token exchange with backend")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}).catch(res=>{
|
}).catch(res=>{
|
||||||
message.value = "Error authenticating on the application. Did you ask for authorization?"
|
message.value = "User not configured for this application. Contact the administrator for details."
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -51,12 +51,12 @@ const loginAD = async () => {
|
|||||||
|
|
||||||
}).catch(res=>{
|
}).catch(res=>{
|
||||||
console.log("Error on token exchange:",res)
|
console.log("Error on token exchange:",res)
|
||||||
error.value = "Error authenticating on the application. Did you ask for authorization?"
|
error.value = "User not configured for this application. Contact the administrator for details."
|
||||||
visible.value = true;
|
visible.value = true;
|
||||||
|
|
||||||
});
|
});
|
||||||
}else{
|
}else{
|
||||||
error.value = "Error authenticating on the application. Did you ask for authorization?"
|
error.value = "User not configured for this application. Contact the administrator for details."
|
||||||
visible.value = true;
|
visible.value = true;
|
||||||
|
|
||||||
console.error("No token exchange with backend")
|
console.error("No token exchange with backend")
|
||||||
@@ -65,7 +65,7 @@ const loginAD = async () => {
|
|||||||
|
|
||||||
}).catch(res=>{
|
}).catch(res=>{
|
||||||
console.log("Error on token exchange:",res)
|
console.log("Error on token exchange:",res)
|
||||||
error.value = "Error authenticating on the application. Did you ask for authorization?"
|
error.value = "User not configured for this application. Contact the administrator for details."
|
||||||
visible.value = true;
|
visible.value = true;
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user