Skip to content

Commit

Permalink
script change
Browse files Browse the repository at this point in the history
  • Loading branch information
deletidev committed Nov 27, 2023
1 parent c28882a commit 46dfd73
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion export-samples/html/cv-monochrome-force.html
Original file line number Diff line number Diff line change
Expand Up @@ -1046,7 +1046,7 @@ <h2 class="title">Educación</h2>
education && columnRight.appendChild(education);

// Comprueba que haya contenido en la colummna izquierda por el grid
if (!columnLeft.children.length > 0) {
if (columnLeft.children.length === 0) {
columnLeft.style.display = 'none';
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
education && columnRight.appendChild(education);
// Comprueba que haya contenido en la colummna izquierda por el grid
if (!columnLeft.children.length > 0) {
columnLeft.style.display = 'none';
if (columnLeft.children.length === 0) {
columnLeft.style.display = 'none';
}
if (avatar) {
Expand Down

0 comments on commit 46dfd73

Please sign in to comment.