fix(app): replace Vuetify 2 legacy props with proper V3 API
dancefinder-app / build (pull_request) Successful in 3m3s
dancefinder-app / deploy-prod (pull_request) Has been skipped

Replace deprecated V2 props that were being silently ignored:
- v-layout → v-row, grid-list-md removed, xs → cols on v-col
- v-tooltip top → location="top", v-list dense → density="compact"
- v-app-bar app/scroll-off-screen → scroll-behavior="hide"
- append-outer-icon → append-icon, remove primary-title
- headline class → text-h6, remove wrap from v-row

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-25 17:53:41 +01:00
parent 051585a70f
commit 348e0fa045
7 changed files with 35 additions and 40 deletions
+10 -10
View File
@@ -1,8 +1,8 @@
<template>
<div :key="isAuthenticated ? 'true' : 'false'">
<v-container fluid grid-list-md class="app-fade-in">
<v-layout row wrap>
<v-col xs="12">
<v-container fluid class="app-fade-in">
<v-row>
<v-col cols="12">
<v-text-field
v-model="origin"
variant="underlined"
@@ -10,7 +10,7 @@
:placeholder="t('origins.geolocation')"
>
<template #append>
<v-tooltip top>
<v-tooltip location="top">
<template #activator="{ props }">
<v-icon
icon='mdi-crosshairs-gps'
@@ -22,7 +22,7 @@
</v-tooltip>
</template>
<template #prepend>
<v-tooltip top>
<v-tooltip location="top">
<template #activator="{ props }">
<v-icon
icon='mdi-bookmark-plus-outline'
@@ -36,10 +36,10 @@
</template>
</v-text-field>
</v-col>
</v-layout>
<v-layout v-for="o in origins" :key="o" row wrap>
<v-col xs="12">
<v-tooltip top>
</v-row>
<v-row v-for="o in origins" :key="o">
<v-col cols="12">
<v-tooltip location="top">
<template #activator="{ props }">
<v-icon
icon='mdi-delete-outline'
@@ -51,7 +51,7 @@
</v-tooltip>
<span>{{ o }}</span>
</v-col>
</v-layout>
</v-row>
</v-container>
<v-snackbar
v-model="snackbar.active"