Skip to content

Commit

Permalink
Fix broken model table text display
Browse files Browse the repository at this point in the history
  • Loading branch information
monsieurswag committed Oct 19, 2024
1 parent 7e6327f commit ccc2001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/lib/components/ModelTable/ModelTable.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@
{:else if ISO_8601_REGEX.test(value)}
{formatDateOrDateTime(value, languageTag())}
{:else}
{unsafeTranslate(value) ?? '-'}
{safeTranslate(value ?? '-')}
{/if}
</span>
{/if}
Expand Down

0 comments on commit ccc2001

Please sign in to comment.