fix compilation errors

This commit is contained in:
Julien Fastré 2025-05-27 15:39:48 +02:00
parent 67d804e28e
commit 697b4ab436
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB
2 changed files with 3 additions and 9 deletions

View File

@ -1,9 +1,7 @@
<template>
<div class="row">
<div class="col-12">
<comment-editor
v-model="content"
/>
<comment-editor v-model="content" />
</div>
</div>
</template>
@ -11,7 +9,7 @@
<script lang="ts">
import { defineComponent, ref, watch } from "vue";
import CommentEditor from "ChillMainAssets/vuejs/_components/CommentEditor/CommentEditor.vue"
import CommentEditor from "ChillMainAssets/vuejs/_components/CommentEditor/CommentEditor.vue";
export default defineComponent({
name: "AddCommentComponent",

View File

@ -89,11 +89,7 @@ import { PropType, computed, defineComponent, ref, watch } from "vue";
import { useI18n } from "vue-i18n";
// Types
import {
User,
UserGroup,
UserGroupOrUser,
} from "ChillMainAssets/types";
import { User, UserGroup, UserGroupOrUser } from "ChillMainAssets/types";
// Components
import AddPersons from "ChillPersonAssets/vuejs/_components/AddPersons.vue";