update path handling
Some checks failed
deploy / build-and-deploy (push) Failing after 19s

This commit is contained in:
2025-05-18 15:26:52 +02:00
parent 13a8eae450
commit f037198a4b
16 changed files with 57 additions and 44 deletions

View File

@ -39,7 +39,7 @@
<tbody>
{#each $feedbacks as feedback, i (feedback.id)}
<tr class="hover:bg-base-200" onclick={() => (activeFeedback = feedback)}>
<td>{(i + 1)}</td>
<td>{i + 1}</td>
<td>{feedback.event}</td>
<td>{feedback.user?.username}</td>
<td>{dateFormat.format(new Date(feedback.lastChanged))}</td>