]> git.r.bdr.sh - rbdr/forum/blobdiff - src/lib/components/actions/topic.svelte
Don't remember what this WIP was about
[rbdr/forum] / src / lib / components / actions / topic.svelte
index 1311d0680d0c72f944c23802bfb740767b59b85f..9a9cd7e9963a2ac8b37e3c567cfe7f94f77cd075 100644 (file)
@@ -1,14 +1,14 @@
 <script lang="ts">
-  import type { TopicAction } from '$lib/stores/action';
+       import type { TopicAction } from '$lib/stores/actions';
        export let actions: TopicAction;
 
        import { _ } from 'svelte-i18n';
 </script>
 
 <li>
-  <a href="/reply/{actions.id}" title={$_('header.action.reply.title')}>
-    {@html $_('header.action.reply.display')}
-  </a>
+       <a href="/reply/{actions.id}" title={$_('header.action.reply.title')}>
+               {@html $_('header.action.reply.display')}
+       </a>
 </li>
 
 <style>