[CodeFactor] Apply fixes to commit da9301c

This commit is contained in:
codefactor-io 2024-01-14 09:16:10 +00:00
parent da9301c211
commit d5567220f7
No known key found for this signature in database
GPG key ID: B66B2D63282C190F

View file

@ -1,7 +1,7 @@
<script setup lang="ts">
// @ts-nocheck
// reason for no check is, that we have some mixing of typescript and chart js which seems to be not to be fixed that easy
import { computed, onMounted } from "vue";
import { computed, onMounted } from "vue";
import { setActivePinia } from "pinia";
import pinia from "../../store/index";
setActivePinia(pinia);
@ -85,7 +85,7 @@ const scatterChartData = computed(() => ({
<template>
<div class="w-100 h-100">
<Scatter :data="scatterChartData" :options="scatterChartOptions" />
</div>
<!--278px-->
<Scatter :data="scatterChartData" :options="scatterChartOptions" />
</div>
<!--278px-->
</template>