Merge beta into release #21

Merged
didirus merged 276 commits from beta into release 2025-11-01 13:04:25 +00:00
2 changed files with 0 additions and 8 deletions
Showing only changes of commit f48eaee336 - Show all commits

View File

@@ -14,7 +14,6 @@
'text-button-textSelected': activeIndex === index && !subpageSelected,
'text-contrast': activeIndex === index && subpageSelected,
}"
@click="(e) => emit('click', e)"
>
<component :is="link.icon" v-if="link.icon" class="size-5" />
<span class="text-nowrap">{{ link.label }}</span>
@@ -39,9 +38,6 @@
import { computed, onMounted, ref, watch } from 'vue'
const route = useNativeRoute()
const emit = defineEmits<{
(e: 'click', event: MouseEvent): void
}>()
interface Tab {
label: string

View File

@@ -54,7 +54,6 @@
v-if="!server && !flags.projectTypesPrimaryNav"
:links="selectableProjectTypes"
class="hidden md:flex"
@click="query = ''"
/>
</section>
<aside
@@ -386,9 +385,6 @@ await updateServerContext()
watch(route, () => {
updateServerContext()
if (!route.params.q) {
query.value = ''
}
})
async function updateServerContext() {