fix
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-05-20 18:23:01 -06:00
parent 2850887ce3
commit 16588d2965

View File

@@ -11,7 +11,7 @@ const emit = defineEmits(["added"])
const message = useMessage()
const displayID = ref("")
const displayID = ref(props.nextDisplayId || "")
async function addProblem() {
if (!displayID.value) return
@@ -40,7 +40,7 @@ async function addProblem() {
</template>
<n-flex vertical>
<span>请输入在这场比赛中的显示编号</span>
<n-input autofocus v-model:value="displayID" :placeholder="props.nextDisplayId ?? ''" />
<n-input autofocus v-model:value="displayID" />
</n-flex>
</n-popconfirm>
</template>