Remove comment editor component from Activity vue app

This commit is contained in:
Julie Lenaerts 2025-02-06 14:32:22 +01:00
parent cd40eb3932
commit 321d569ee9

View File

@ -2,14 +2,12 @@
<concerned-groups v-if="hasPerson" />
<social-issues-acc v-if="hasSocialIssues" />
<location v-if="hasLocation" />
<comment-editor v-if="isSimpleEditor"/>
</template>
<script>
import ConcernedGroups from "./components/ConcernedGroups.vue";
import SocialIssuesAcc from "./components/SocialIssuesAcc.vue";
import Location from "./components/Location.vue";
import CommentEditor from "ChillMainAssets/vuejs/CommentEditor/component/CommentEditor.vue"
export default {
name: "App",
@ -18,7 +16,6 @@ export default {
ConcernedGroups,
SocialIssuesAcc,
Location,
CommentEditor
},
};
</script>