-
Notifications
You must be signed in to change notification settings - Fork 10
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
feat(frontend): add cerfa with new dates #3594
Conversation
Quality Gate failedFailed conditions See analysis details on SonarQube Cloud Catch issues before they fail your Quality Gate with our IDE extension SonarQube for IDE |
if (a === null || a === undefined) return 1; | ||
if (b === null || b === undefined) return -1; | ||
} | ||
|
||
// Détecter si c'est une date valide | ||
// Conversion immédiate en string | ||
const strA = a === null || a === undefined ? "" : String(a); |
Check notice
Code scanning / CodeQL
Unneeded defensive code Note
if (a === null || a === undefined) return 1; | ||
if (b === null || b === undefined) return -1; | ||
} | ||
|
||
// Détecter si c'est une date valide | ||
// Conversion immédiate en string | ||
const strA = a === null || a === undefined ? "" : String(a); |
Check notice
Code scanning / CodeQL
Unneeded defensive code Note
// Détecter si c'est une date valide | ||
// Conversion immédiate en string | ||
const strA = a === null || a === undefined ? "" : String(a); | ||
const strB = b === null || b === undefined ? "" : String(b); |
Check notice
Code scanning / CodeQL
Unneeded defensive code Note
🎉 This PR is included in version 2.188.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
No description provided.