-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sensible - Mise à jour de VueJs #4741
base: main
Are you sure you want to change the base?
Conversation
jenovateurs
commented
Nov 19, 2024
•
edited
Loading
edited
- Pinia : https://github.com/vuejs/pinia/blob/v2/packages/pinia/CHANGELOG.md
- VueJs : https://github.com/vuejs/core/blob/main/CHANGELOG.md
- Vue-router : https://github.com/vuejs/router/blob/main/packages/router/CHANGELOG.md
- Vue/test-utils : https://github.com/vuejs/test-utils/releases
- Vue-jest : https://github.com/vuejs/vue-jest/releases
- Vue/eslint : https://github.com/vuejs/eslint-config-typescript/releases
En attente de validation de l'autre PR pour itérer. |
Cette PR devient caduque par rapport à celle de jest non @Shamzic ? |
@@ -217,6 +217,10 @@ export async function logSurveyLinkClick(req: Request, res: Response) { | |||
const redirectUrl = await getRedirectUrl(req) | |||
res.redirect(redirectUrl) | |||
} catch (error) { | |||
console.error( | |||
"Erreur lors de la mise à jour du sondage dans le followup", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Jusqu'à présent on a les erreurs en anglais
"Erreur lors de la mise à jour du sondage dans le followup", | |
"Error: survey update in followup", |
@@ -59,6 +59,9 @@ export function useVolontaryOrganisations() { | |||
} catch (error) { | |||
volontaryOrganisationsLink.value = baseUrl | |||
updating.value = false | |||
console.error( | |||
"Erreur lors de la construction du lien avec JeVeuxAider " + error |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Erreur lors de la construction du lien avec JeVeuxAider " + error | |
"Error: link build with JeVeuxAider ", error |
@@ -34,6 +34,9 @@ function skipSendEventToRecorder(event: RecorderEvent): boolean { | |||
getEnvVariable("VITE_STATS_URL") | |||
getEnvVariable("VITE_STATS_VERSION") | |||
} catch (e) { | |||
console.error( | |||
"Erreur lors de la récupération des variables d'environnements VITE " + e |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Erreur lors de la récupération des variables d'environnements VITE " + e | |
"Error: retrieving Vite environment variables", e |
@@ -19,6 +19,7 @@ export class StorageService { | |||
storage.removeItem(storageTest) | |||
return storedValue === storageTest | |||
} catch (e) { | |||
console.error("Erreur lors de la mise à jour des données locales " + e) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
console.error("Erreur lors de la mise à jour des données locales " + e) | |
console.error("Error: updating local data", e) |
@@ -34,6 +35,7 @@ export class StorageService { | |||
try { | |||
return JSON.parse(item) | |||
} catch (e) { | |||
console.error("Erreur lors du parsage des données " + e) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
console.error("Erreur lors du parsage des données " + e) | |
console.error("Error: parsing data", e) |
@@ -48,7 +48,9 @@ waitForPaq() | |||
initializeABTestingDimensions() | |||
}) | |||
.catch((error) => { | |||
!isProduction && console.error("Error while loading Matomo:", error) | |||
if (!isProduction) { | |||
console.error("Error while loading Matomo:", error) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
console.error("Error while loading Matomo:", error) | |
console.error("Error: loading Matomo", error) |
Mis à part les logs d'erreurs à mettre en anglais et les conflits avec le package-lock, ça me semble bon. (-: |