This commit is contained in:
Sidharth Vinod
2021-05-17 10:52:22 +05:30
parent 591910371d
commit 4e9390cea0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -10,7 +10,7 @@
} from './history';
import { notify, prompt } from '$lib/util/notify';
import { onMount } from 'svelte';
import moment, { lang } from 'moment';
import moment from 'moment';
const HISTORY_SAVE_INTERVAL: number = 60000;
+1 -1
View File
@@ -49,7 +49,7 @@
<ul class="lg:flex items-center justify-between text-base pt-4 lg:pt-0">
{#each links as { title, href }}
<li>
<a class="nav-btn" {href}>{title}</a>
<a class="nav-btn" target="_blank" {href}>{title}</a>
</li>
{/each}
</ul>