FIX: eslint

This commit is contained in:
Boris Waaub
2025-12-09 17:14:07 +01:00
parent 10052cc5e1
commit 24927069a4
2 changed files with 6 additions and 5 deletions

View File

@@ -131,7 +131,10 @@ import { useStore } from "vuex";
// Utils
import { getTicketTitle, motiveHierarchyLabel } from "../utils/utils";
import {isThirdparty, Thirdparty} from "../../../../../../../ChillThirdPartyBundle/Resources/public/types";
import {
isThirdparty,
Thirdparty,
} from "../../../../../../../ChillThirdPartyBundle/Resources/public/types";
const props = defineProps<{
ticket: Ticket;
@@ -197,7 +200,7 @@ const isEmergency = computed({
}
},
});
const caller = computed<Person[]|Thirdparty[]>(() => {
const caller = computed<Person[] | Thirdparty[]>(() => {
if (null === props.ticket.caller) {
return [];
}
@@ -207,7 +210,7 @@ const caller = computed<Person[]|Thirdparty[]>(() => {
} else {
return [props.ticket.caller];
}
})
});
const since = computed(() => {
return store.getters.getSinceCreated(today.value);

View File

@@ -94,8 +94,6 @@
</template>
<script setup lang="ts">
import { defineProps, defineEmits } from "vue";
// Types
import { TicketSimple } from "../../../types";
import { Person } from "ChillPersonAssets/types";