Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/MessageRuns.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
The `runs` prop is supposed to always be an array,
but somewhere, somehow, sometimes, YouTube forgets
to provide us an array.

This is sorta cheap, but the easiest solution is
to safeguard a null prop value with a simple check.

Expand Down Expand Up @@ -74,7 +74,7 @@
</span>
{:else if run.src}
<img
class="h-5 w-5 inline mx-0.5 align-middle"
class="h-6 w-6 inline mx-0.5 align-middle"
src={run.src}
alt={run.alt}
title={run.alt}
Expand Down
Loading