diff --git a/README.en.md b/README.en.md index daeaa0538..6b7ce0eff 100644 --- a/README.en.md +++ b/README.en.md @@ -11,13 +11,13 @@ This is a [vue-vben-admin](https://github.com/anncwb/vue-vben-admin) -based Abp ### 1、Install cli ```shell - dotnet tool install --global LINGYUN.Abp.Cli --version 5.1.4 + dotnet tool install --global LINGYUN.Abp.Cli --version 5.2.0 ``` ### 2、Install .NET Template ```shell - dotnet new --install LINGYUN.Abp.MicroService.Templates::5.1.4 + dotnet new --install LINGYUN.Abp.MicroService.Templates::5.2.0 ``` ### 3、Use cli create new project diff --git a/README.md b/README.md index 423d8d601..367dc3d02 100644 --- a/README.md +++ b/README.md @@ -13,13 +13,13 @@ ### 1、安装dotnet工具 ```shell - dotnet tool install --global LINGYUN.Abp.Cli --version 5.1.4 + dotnet tool install --global LINGYUN.Abp.Cli --version 5.2.0 ``` ### 2、安装.NET模板 ```shell - dotnet new --install LINGYUN.Abp.MicroService.Templates::5.1.4 + dotnet new --install LINGYUN.Abp.MicroService.Templates::5.2.0 ``` ### 3、使用cli创建一个项目 diff --git a/apps/vue/src/hooks/abp/useValidation.ts b/apps/vue/src/hooks/abp/useValidation.ts index 2cb5fa8a7..ce153854b 100644 --- a/apps/vue/src/hooks/abp/useValidation.ts +++ b/apps/vue/src/hooks/abp/useValidation.ts @@ -151,7 +151,7 @@ export function useValidation() { : L(notNameEnum, field.length); function checkLength(value: string | any[]) { - return checkMaximum ? value.length > field.length : value.length < field.length; + return checkMaximum ? field.length > value.length : value.length > field.length; } return { diff --git a/apps/vue/src/views/webhooks/send-attempts/components/SendAttemptModal.vue b/apps/vue/src/views/webhooks/send-attempts/components/SendAttemptModal.vue index f7655a864..c5cde4a72 100644 --- a/apps/vue/src/views/webhooks/send-attempts/components/SendAttemptModal.vue +++ b/apps/vue/src/views/webhooks/send-attempts/components/SendAttemptModal.vue @@ -16,6 +16,9 @@ > + + + @@ -23,11 +26,14 @@ {{ httpStatusCodeMap[modelRef.responseStatusCode] }} - +