added guid
All checks were successful
Vercel Preview Deployment / Deploy-Preview (push) Successful in 1m6s

This commit is contained in:
ChrQR 2024-05-19 00:44:36 +02:00
parent 02cac45992
commit 2fe5d53e64
2 changed files with 4 additions and 1 deletions

View File

@ -5,6 +5,7 @@
export let description;
export let published;
export let author;
export let guid;
const pubAgo = moment(published).fromNow();
</script>
@ -19,4 +20,5 @@
</div>
<div>commited {pubAgo} by {@html author}</div>
<a class="hover:text-slate-400 underline" href={link}>view commit</a>
<div class="text-xs text-slate-400">guid:{guid}</div>
</div>

View File

@ -22,7 +22,8 @@
link: item.querySelector('link')?.textContent,
description: item.querySelector('description')?.textContent,
published: item.querySelector('pubDate')?.textContent,
author: item.querySelector('author')?.textContent
author: item.querySelector('author')?.textContent,
guid: item.querySelector('guid')?.textContent
}));
feed = items;
} catch (err) {