chore: fix tests

This commit is contained in:
Christy Jacob
2023-08-08 14:18:27 +04:00
parent efd847c42e
commit f69a264ab7
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
<script lang="ts">
import { beforeNavigate, goto } from '$app/navigation';
import { beforeNavigate } from '$app/navigation';
import { page } from '$app/stores';
import { INTERVAL } from '$lib/constants';
import { Logs } from '$lib/layout';
@@ -64,14 +64,14 @@
</div>
</svelte:fragment>
<svelte:fragment slot="icons">
{#if func.scheduleNext}
{#if func.schedule}
<li>
<span
class="icon-clock"
aria-hidden="true"
use:tooltip={{
content: `Next execution:
${toLocaleDateTime(func.scheduleNext)}`
${toLocaleDateTime(func.schedule)}`
}} />
</li>
{/if}