Skip to content

Commit

Permalink
typo: change margin
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohamed-Hacene committed Dec 20, 2024
1 parent b0e3baf commit 909a073
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 @@ -359,7 +359,7 @@
{:else if ISO_8601_REGEX.test(value) && (key === 'created_at' || key === 'updated_at' || key === 'expiry_date' || key === 'accepted_at' || key === 'rejected_at' || key === 'revoked_at' || key === 'eta')}
{formatDateOrDateTime(value, languageTag())}
{:else if [true, false].includes(value)}
<span class="ml-5">{safeTranslate(value ?? '-')}</span>
<span class="ml-4">{safeTranslate(value ?? '-')}</span>
{:else}
{safeTranslate(value ?? '-')}
{/if}
Expand Down

0 comments on commit 909a073

Please sign in to comment.