1
0

feat: camelcase global components

This commit is contained in:
Dominik Pschenitschni
2024-06-18 17:48:04 +02:00
committed by konrad
parent 1977a7bee0
commit f36115871c
74 changed files with 236 additions and 236 deletions

View File

@ -1,8 +1,8 @@
<template>
<modal
<Modal
@close="$router.back()"
>
<card
<Card
:title="project?.title"
>
<div
@ -16,8 +16,8 @@
>
{{ $t('project.noDescriptionAvailable') }}
</p>
</card>
</modal>
</Card>
</Modal>
</template>
<script lang="ts" setup>

View File

@ -1,5 +1,5 @@
<template>
<modal
<Modal
@close="$router.back()"
@submit="archiveProject()"
>
@ -10,7 +10,7 @@
<template #text>
<p>{{ project.isArchived ? $t('project.archive.unarchiveText') : $t('project.archive.archiveText') }}</p>
</template>
</modal>
</Modal>
</template>
<script lang="ts">

View File

@ -1,5 +1,5 @@
<template>
<modal
<Modal
@close="$router.back()"
@submit="deleteProject()"
>
@ -28,7 +28,7 @@
{{ $t('misc.cannotBeUndone') }}
</p>
</template>
</modal>
</Modal>
</template>
<script setup lang="ts">

View File

@ -205,7 +205,7 @@ async function saveViewPosition(e) {
@click="viewToEdit = {...v}"
/>
<span class="icon handle">
<icon icon="grip-lines" />
<Icon icon="grip-lines" />
</span>
</td>
</template>
@ -215,7 +215,7 @@ async function saveViewPosition(e) {
</table>
</CreateEdit>
<modal
<Modal
:enabled="showDeleteModal"
@close="showDeleteModal = false"
@submit="deleteView"
@ -227,7 +227,7 @@ async function saveViewPosition(e) {
<template #text>
<p>{{ $t('project.views.deleteText') }}</p>
</template>
</modal>
</Modal>
</template>
<style scoped>

View File

@ -256,7 +256,7 @@ function validateSelectedEvents() {
</tbody>
</table>
<modal
<Modal
:enabled="showDeleteModal"
@close="showDeleteModal = false"
@submit="deleteWebhook()"
@ -268,7 +268,7 @@ function validateSelectedEvents() {
<template #text>
<p>{{ $t('project.webhooks.deleteText') }}</p>
</template>
</modal>
</Modal>
</CreateEdit>
</template>