Skip to content

Commit 2554cd3

Browse files
committed
💚 linter
1 parent b6b4ed5 commit 2554cd3

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

personalization-webcomponents/src/ChecklistPreview.ce.vue

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,9 +299,6 @@ function _saveChecklistAcceptedDSE() {
299299
situationId: lebenslageId.value,
300300
checklistItems: checklistItemsDtos,
301301
});
302-
303-
console.log(body);
304-
305302
fetch(url, {
306303
method: "POST",
307304
headers: {

personalization-webcomponents/src/components/ChecklistCard.vue

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,15 @@
6969
<script setup lang="ts">
7070
import type Checklist from "@/api/persservice/Checklist.ts";
7171
72-
import {MucCard} from "@muenchen/muc-patternlab-vue";
73-
import {computed} from "vue";
72+
import { MucCard } from "@muenchen/muc-patternlab-vue";
73+
import { computed } from "vue";
7474
7575
import ChecklistitemListitem from "@/components/ChecklistitemListitem.vue";
7676
import MucChip from "@/components/common/MucChip.vue";
77-
import {getChecklistIconBySituationId, QUERY_PARAM_CHECKLIST_ID,} from "@/util/Constants.ts";
77+
import {
78+
getChecklistIconBySituationId,
79+
QUERY_PARAM_CHECKLIST_ID,
80+
} from "@/util/Constants.ts";
7881
7982
const props = defineProps<{
8083
checklist: Checklist;

personalization-webcomponents/src/components/ChecklistHeader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ import { MucIntro } from "@muenchen/muc-patternlab-vue";
5757
import { computed, onMounted } from "vue";
5858
5959
import MucChip from "@/components/common/MucChip.vue";
60-
import {getChecklistIconBySituationId} from "@/util/Constants.ts";
60+
import { getChecklistIconBySituationId } from "@/util/Constants.ts";
6161
6262
const props = defineProps<{
6363
checklist: Checklist;

0 commit comments

Comments
 (0)