1
0

feat: eslint enforce vue/component-name-in-template-casing

This commit is contained in:
Dominik Pschenitschni
2024-06-17 17:31:37 +02:00
committed by konrad
parent 8f094c140a
commit 23707fc493
20 changed files with 64 additions and 62 deletions

View File

@ -125,7 +125,7 @@
class="task-done-checkbox"
@update:modelValue="toggleTaskDone(t)"
/>
<router-link
<RouterLink
:to="{ name: route.name as string, params: { id: task.id } }"
:class="{ 'is-strikethrough': task.done}"
>
@ -141,7 +141,7 @@
</span>
</span>
{{ task.title }}
</router-link>
</RouterLink>
</div>
<BaseButton
v-if="editEnabled"

View File

@ -27,7 +27,7 @@
@mousedown.stop.self="focusTaskLink"
>
<span>
<router-link
<RouterLink
v-if="showProject && typeof project !== 'undefined'"
v-tooltip="$t('task.detail.belongsToProject', {project: project.title})"
:to="{ name: 'project.index', params: { projectId: task.projectId } }"
@ -35,7 +35,7 @@
:class="{'mr-2': task.hexColor !== ''}"
>
{{ project.title }}
</router-link>
</RouterLink>
<ColorBubble
v-if="task.hexColor !== ''"
@ -49,14 +49,14 @@
class="pr-2"
/>
<router-link
<RouterLink
ref="taskLink"
:to="taskDetailRoute"
class="task-link"
tabindex="-1"
>
{{ task.title }}
</router-link>
</RouterLink>
</span>
<Labels
@ -133,14 +133,14 @@
class="mr-1"
/>
<router-link
<RouterLink
v-if="showProjectSeparately"
v-tooltip="$t('task.detail.belongsToProject', {project: project.title})"
:to="{ name: 'project.index', params: { projectId: task.projectId } }"
class="task-project"
>
{{ project.title }}
</router-link>
</RouterLink>
<BaseButton
:class="{'is-favorite': task.isFavorite}"