style: fix linting issues met Prettier
This commit is contained in:
parent
9393898e06
commit
455ad82ce7
4 changed files with 12 additions and 13 deletions
|
@ -1,21 +1,21 @@
|
|||
<script setup lang="ts">
|
||||
import type { LearningObject } from "@/data-objects/learning-objects/learning-object";
|
||||
import { useQuestionsQuery } from "@/queries/questions";
|
||||
import type { LearningObjectIdentifierDTO } from "@dwengo-1/common/interfaces/learning-content";
|
||||
import { computed } from 'vue';
|
||||
import type { LearningObject } from "@/data-objects/learning-objects/learning-object";
|
||||
import { useQuestionsQuery } from "@/queries/questions";
|
||||
import type { LearningObjectIdentifierDTO } from "@dwengo-1/common/interfaces/learning-content";
|
||||
import { computed } from "vue";
|
||||
|
||||
const props = defineProps<{
|
||||
const props = defineProps<{
|
||||
node: LearningObject;
|
||||
}>();
|
||||
|
||||
const loid = {
|
||||
hruid: props.node.key,
|
||||
version: props.node.version,
|
||||
language: props.node.language,} as LearningObjectIdentifierDTO;
|
||||
const { data } = useQuestionsQuery(loid);
|
||||
language: props.node.language,
|
||||
} as LearningObjectIdentifierDTO;
|
||||
const { data } = useQuestionsQuery(loid);
|
||||
|
||||
const hasQuestions = computed(() => (data.value?.questions.length ?? 0) > 0);
|
||||
|
||||
</script>
|
||||
<template v-if="!isLoading & !error">
|
||||
<v-icon
|
||||
|
|
|
@ -13,11 +13,11 @@
|
|||
|
||||
const expanded = ref(false);
|
||||
|
||||
function toggle (): void {
|
||||
function toggle(): void {
|
||||
expanded.value = !expanded.value;
|
||||
}
|
||||
|
||||
function formatDate (timestamp: string | Date): string {
|
||||
function formatDate(timestamp: string | Date): string {
|
||||
return new Date(timestamp).toLocaleString();
|
||||
}
|
||||
|
||||
|
|
|
@ -176,7 +176,7 @@
|
|||
author: authService.authState.user?.profile.preferred_username,
|
||||
content: questionInput.value,
|
||||
inGroup: group, //TODO: POST response zegt dat dit null is???
|
||||
}
|
||||
};
|
||||
if (questionInput.value !== "") {
|
||||
createQuestionMutation.mutate(questionData, {
|
||||
onSuccess: async () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue