From 72b4daeb4e8f8aba28adeaceed7711bc6c6df508 Mon Sep 17 00:00:00 2001 From: Yasuhiro Morioka Date: Fri, 17 Jun 2022 00:05:45 +0900 Subject: [PATCH] fix #1816 --- frontend/pages/projects/_id/sequence-labeling/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/pages/projects/_id/sequence-labeling/index.vue b/frontend/pages/projects/_id/sequence-labeling/index.vue index 37ecd135..3b132001 100644 --- a/frontend/pages/projects/_id/sequence-labeling/index.vue +++ b/frontend/pages/projects/_id/sequence-labeling/index.vue @@ -127,7 +127,7 @@ export default { this.$route.query.isChecked ) const doc = this.docs.items[0] - if (this.enableAutoLabeling) { + if (this.enableAutoLabeling && !doc.isConfirmed) { await this.autoLabel(doc.id) } await this.list(doc.id)