Merge remote-tracking branch 'origin/1.2.0' into 1.2.0

master
OathK1per 2023-01-05 17:15:07 +08:00
commit 56cc5b1749
3 changed files with 6 additions and 6 deletions

View File

@ -30,10 +30,10 @@ spring.freemarker.allow-request-override=true
spring.freemarker.allow-session-override=true
spring.freemarker.settings.template_exception_handler=ignore
multipart.maxFileSize=20Mb
multipart.maxRequestSize=20Mb
spring.http.multipart.maxFileSize=20Mb
spring.http.multipart.maxRequestSize=20Mb
multipart.maxFileSize=50Mb
multipart.maxRequestSize=50Mb
spring.http.multipart.maxFileSize=50Mb
spring.http.multipart.maxRequestSize=50Mb
spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
spring.data.rest.page-param-name=page

View File

@ -903,7 +903,7 @@
else if (value instanceof Array) {
return value.length === 0
}
return value != null || value !== undefined
return value == null || value === undefined
}
const containsEmpty = detail => {

View File

@ -1059,7 +1059,7 @@
else if (value instanceof Array) {
return value.length === 0
}
return value != null || value !== undefined
return value == null || value === undefined
}
const containsEmpty = detail => {