update
Some checks failed
Deploy / deploy (build, debian, 22, /root/OJDeploy/data/clientnext) (push) Has been cancelled
Deploy / deploy (build:staging, school, 8822, /root/OJ/data/dist) (push) Has been cancelled

This commit is contained in:
2026-07-03 10:15:33 -06:00
parent 10dcb29704
commit 9144dbb4fc
2 changed files with 3 additions and 3 deletions

View File

@@ -16,8 +16,8 @@ const color = computed(() => {
<template>
<n-icon v-if="showIcon" :color="color">
<Icon icon="ph:check" v-if="status === 'passed'"></Icon>
<Icon icon="ph:minus" v-if="status === 'failed'"></Icon>
<Icon icon="ph:check-bold" v-if="status === 'passed'"></Icon>
<Icon icon="ph:minus-bold" v-if="status === 'failed'"></Icon>
</n-icon>
</template>

View File

@@ -175,7 +175,7 @@ const columns: DataTableColumn<Submission["info"]["data"][number]>[] = [
<n-icon
:color="rule.passed ? theme.successColor : theme.errorColor"
>
<Icon :icon="rule.passed ? 'ph:check' : 'ph:x-bold'" />
<Icon :icon="rule.passed ? 'ph:check-bold' : 'ph:x-bold'" />
</n-icon>
<span>{{ rule.description }}</span>
</n-flex>