Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Commit

Permalink
Merge pull request #72 from pvdthings/fix-undefined-bookmark
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonfagan authored Oct 25, 2023
2 parents cb0ec03 + 1a11e1d commit a4c80d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/views/MyListView/MyListView.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<table class="table">
<tbody>
{#each $things as thing}
{@const thingName = isSpanish ? thing.spanishName : thing.name}
{@const thingName = isSpanish ? thing.spanishName ?? thing.name : thing.name}
<MyListTableRow
on:remove={() => removeThing(thing.id)}
{thingName}
Expand Down

0 comments on commit a4c80d4

Please sign in to comment.