diff --git a/api-test/backend/src/main/java/io/metersphere/base/mapper/ext/ExtApiTestCaseMapper.xml b/api-test/backend/src/main/java/io/metersphere/base/mapper/ext/ExtApiTestCaseMapper.xml
index 69f0b241a8..fb602f1655 100644
--- a/api-test/backend/src/main/java/io/metersphere/base/mapper/ext/ExtApiTestCaseMapper.xml
+++ b/api-test/backend/src/main/java/io/metersphere/base/mapper/ext/ExtApiTestCaseMapper.xml
@@ -527,23 +527,23 @@
and (t1.status is null or t1.status != 'Trash')
-
+
and ( t1.to_be_updated = #{request.toBeUpdated} or t1.status
in
#{value}
)
-
+
and t1.to_be_updated = #{request.toBeUpdated}
-
+
and (t1.to_be_update_time >= #{request.toBeUpdateTime} or ( t1.status in
#{value}
and t1.update_time>= #{request.updateTime} ))
-
+
and t1.to_be_update_time >= #{request.toBeUpdateTime}
@@ -1179,7 +1179,7 @@
AND (create_time >= #{startTime})
- AND ( create_time <= #{endTime})
+ AND ( create_time <= #{endTime})
AND
diff --git a/framework/sdk-parent/frontend/src/components/MsInputTag.vue b/framework/sdk-parent/frontend/src/components/MsInputTag.vue
index 7fc44c4c03..4aa0f23a27 100644
--- a/framework/sdk-parent/frontend/src/components/MsInputTag.vue
+++ b/framework/sdk-parent/frontend/src/components/MsInputTag.vue
@@ -36,7 +36,7 @@ export default {
placeholder: {
type: String,
},
- errorInfor: String,
+ errorInfo: String,
addTagOnKeys: {
type: Array,
default: () => [13, 188, 9]
@@ -119,8 +119,8 @@ export default {
this.innerTags.push(tag)
return true
} else {
- if (tag !== "" && this.errorInfor) {
- this.$error(this.errorInfor);
+ if (tag !== "" && this.errorInfo) {
+ this.$error(this.errorInfo);
}
}
return false