Apply repository-wide ESLint auto-fix formatting pass

Co-Authored-By: Codex <codex@openai.com>
This commit is contained in:
2026-03-08 12:11:57 +08:00
parent 7c48faaa3d
commit 847904c49b
172 changed files with 13629 additions and 9154 deletions

View File

@@ -1,10 +1,19 @@
<template>
<ul class="space-y-2" id="cyp-conformance-result-check">
<li class="flex justify-start items-center pr-4" v-for="(act, index) in datadata" :key="index" :title="act">
<li
class="flex justify-start items-center pr-4"
v-for="(act, index) in datadata"
:key="index"
:title="act"
>
<span class="material-symbols-outlined text-primary mr-2">
check_circle
</span>
<p class="px-2 py-1 border border-neutral-500 w-full whitespace-nowrap break-keep text-ellipsis overflow-hidden">{{ act }}</p>
<p
class="px-2 py-1 border border-neutral-500 w-full whitespace-nowrap break-keep text-ellipsis overflow-hidden"
>
{{ act }}
</p>
</li>
</ul>
</template>
@@ -20,20 +29,26 @@
* matched activities.
*/
import { ref, watch } from 'vue';
import emitter from '@/utils/emitter';
import { ref, watch } from "vue";
import emitter from "@/utils/emitter";
const props = defineProps(['data', 'select']);
const props = defineProps(["data", "select"]);
const datadata = ref(props.select);
watch(() => props.data, (newValue) => {
datadata.value = newValue;
});
watch(
() => props.data,
(newValue) => {
datadata.value = newValue;
},
);
watch(() => props.select, (newValue) => {
datadata.value = newValue;
});
watch(
() => props.select,
(newValue) => {
datadata.value = newValue;
},
);
emitter.on('reset', (val) => datadata.value = val);
emitter.on("reset", (val) => (datadata.value = val));
</script>