mirror of
https://gitee.com/dromara/Jpom.git
synced 2024-11-30 02:48:17 +08:00
fix resultDirFile input max len
This commit is contained in:
parent
526e412c90
commit
cda37ec8bb
10
CHANGELOG.md
10
CHANGELOG.md
@ -1,5 +1,15 @@
|
||||
# 🚀 版本日志
|
||||
|
||||
|
||||
# 2.8.23
|
||||
|
||||
### 🐣 新增功能
|
||||
|
||||
### 🐞 解决BUG、优化功能
|
||||
|
||||
1. 修复构建产物目录输入框限制(50 改为 200)(感谢@H)
|
||||
|
||||
|
||||
# 2.8.22 (2022-05-27)
|
||||
|
||||
### 🐣 新增功能
|
||||
|
@ -56,7 +56,7 @@ CREATE TABLE IF NOT EXISTS PUBLIC.BUILD_INFO
|
||||
`group` VARCHAR(50) comment '分组名称',
|
||||
branchName VARCHAR(50) comment '分支',
|
||||
script CLOB comment '构建命令',
|
||||
resultDirFile VARCHAR(50) comment '构建产物目录',
|
||||
resultDirFile VARCHAR(200) comment '构建产物目录',
|
||||
releaseMethod int comment '发布方法{0: 不发布, 1: 节点分发, 2: 分发项目, 3: SSH}',
|
||||
modifyUser VARCHAR(50) comment '修改人',
|
||||
`status` int comment '状态',
|
||||
|
@ -263,7 +263,7 @@
|
||||
<a-icon type="question-circle" theme="filled" />
|
||||
</a-tooltip>
|
||||
</template>
|
||||
<a-input :maxLength="50" v-model="temp.resultDirFile" placeholder="构建产物目录,相对仓库的路径,如 java 项目的 target/xxx.jar vue 项目的 dist" />
|
||||
<a-input :maxLength="200" v-model="temp.resultDirFile" placeholder="构建产物目录,相对仓库的路径,如 java 项目的 target/xxx.jar vue 项目的 dist" />
|
||||
</a-form-model-item>
|
||||
</a-collapse-panel>
|
||||
<a-collapse-panel key="1">
|
||||
|
Loading…
Reference in New Issue
Block a user