prune: disable link to anki cards

This commit is contained in:
Julien Calixte
2025-05-03 15:11:51 +02:00
parent e49f6c0f6b
commit 0fb42b3628

View File

@@ -23,7 +23,7 @@
</svg> </svg>
</router-link> </router-link>
<theme-swap /> <theme-swap />
<router-link <!-- <router-link
class="special-folder" class="special-folder"
:to="{ name: 'SpacedRepetitionCard', params: { user, repo } }" :to="{ name: 'SpacedRepetitionCard', params: { user, repo } }"
> >
@@ -46,7 +46,7 @@
<line x1="15" y1="12" x2="17" y2="12" /> <line x1="15" y1="12" x2="17" y2="12" />
<line x1="7" y1="16" x2="17" y2="16" /> <line x1="7" y1="16" x2="17" y2="16" />
</svg> </svg>
</router-link> </router-link> -->
<router-link <router-link
class="special-folder" class="special-folder"
:to="{ name: 'DraftNotes', params: { user, repo } }" :to="{ name: 'DraftNotes', params: { user, repo } }"
@@ -98,7 +98,7 @@
</template> </template>
<script lang="ts" setup> <script lang="ts" setup>
import ThemeSwap from "@/components/ThemeSwap.vue" import ThemeSwap from '@/components/ThemeSwap.vue'
defineProps<{ user: string; repo: string }>() defineProps<{ user: string; repo: string }>()
</script> </script>