style: fix svelte/no-useless-mustaches — unwrap string literals from mustache expressions
This commit is contained in:
@@ -336,7 +336,7 @@
|
||||
{settings.website_url}
|
||||
</a>
|
||||
{:else}
|
||||
{'\u2014'}
|
||||
—
|
||||
{/if}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
@@ -877,10 +877,10 @@
|
||||
minute: '2-digit',
|
||||
hour12: true
|
||||
})}}
|
||||
{' · '}
|
||||
·
|
||||
{formatDuration(booking.duration_minutes)}
|
||||
{#if booking.services?.length}
|
||||
{' · '}
|
||||
·
|
||||
{booking.services.join(', ')}
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
@@ -96,8 +96,8 @@
|
||||
</div>
|
||||
<div class="mt-1 text-sm text-emerald-700">
|
||||
{selectedDate} at {selectedTime}
|
||||
{' — '}
|
||||
—
|
||||
{endTime}
|
||||
{' ('}{duration} min)
|
||||
({duration} min)
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1034,9 +1034,9 @@
|
||||
minute: '2-digit',
|
||||
hour12: true
|
||||
})}
|
||||
{' · '}{formatDuration(booking.duration_minutes)}
|
||||
· {formatDuration(booking.duration_minutes)}
|
||||
{#if booking.services?.length}
|
||||
{' · '}{booking.services.join(', ')}{/if}
|
||||
· {booking.services.join(', ')}{/if}
|
||||
</div>
|
||||
</div>
|
||||
<div class="mt-1.5 flex gap-2">
|
||||
|
||||
Reference in New Issue
Block a user