-
Notifications
You must be signed in to change notification settings - Fork 0
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
[EN-7791] fix(CV-PDF): left column width and display sections #409
base: develop
Are you sure you want to change the base?
Conversation
Default Project Run #1571
Run Properties:
|
Project |
Default Project
|
Branch Review |
fix/EN-7791-cv-leftCol-width
|
Run status |
Passed #1571
|
Run duration | 06m 21s |
Commit |
a517dfca56 ℹ️: Merge 767cac62c510a7db050b91a7ab6b0cd0c3b343d6 into 18f49f350a9c08776d58d411e270...
|
Committer | CAUCHOIS Guillaume |
View all properties for this run ↗︎ |
Test results | |
---|---|
Failures |
0
|
Flaky |
0
|
Pending |
0
|
Skipped |
0
|
Passing |
42
|
Upgrade your plan to view test results. | |
View all changes introduced in this branch ↗︎ |
firstPageExperiences: cv.experiences.slice(0, nbOfExperienceFirstPage), | ||
firstPageExperiences: cv.experiences, // all the xp on first page | ||
firstPageFormations: cv.formations.slice(0, nbOfFormationFirstPage), | ||
secondPageExperiences: cv.formations.slice(nbOfExperienceFirstPage), | ||
secondPageExperiences: [], // no xp on second page | ||
secondPageFormations: cv.formations.slice(nbOfFormationFirstPage), |
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.
Est ce que c'est possible que les experiences prennent plus d'une page ?
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.
Non dans tous les cas on peut afficher 5 éléments et on limite le nombre d'expérience à 5
No description provided.