Skip to content

Commit

Permalink
NOJIRA | Updates. | [Ray]
Browse files Browse the repository at this point in the history
  • Loading branch information
RaycatWhoDat authored Jul 9, 2024
1 parent 7d86117 commit ce47240
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@

.image img {
width: 100%;
height: 70%;
height: 80%;
object-fit: cover;
}

Expand Down Expand Up @@ -192,8 +192,7 @@

const blurbElem = document.createElement('span');
blurbElem.classList.add('game-blurb');
console.log(blurb, blurb?.length);
blurbElem.textContent = blurb ?? '(no comment)';
blurbElem.textContent = blurb?.length < 1 ? blurb : '(no comment)';
entryElem.appendChild(blurbElem);

if (url) {
Expand Down

0 comments on commit ce47240

Please sign in to comment.