add favicon
All checks were successful
PDX Pecularities Server / deploy (push) Successful in 1s

This commit is contained in:
david 2025-04-07 20:15:38 -07:00
parent d81a68ffc6
commit bbed681ca9
2 changed files with 2 additions and 1 deletions

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 318 B

View File

@ -18,7 +18,8 @@ const renderItems = (items) => {
return renderItems(item); // recurse into nested array
} else if (typeof item === 'object') {
return `<p>${Object.entries(item).map(([key, value]) =>
`<strong>${key}:</strong> ${value}`).join('<br>')}</p>`;
`${value}`).join('<br>')}</p>`;
// `<strong>${key}:</strong> ${value}`).join('<br>')}</p>`;
} else {
return `<p>${String(item)}</p>`;
}