fix: 修改缺陷标题长度

This commit is contained in:
shiziyuan9527 2020-08-24 14:11:08 +08:00
parent cf17e34756
commit 9ad4da05cd
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ create table if not exists issues
(
id varchar(50) not null
primary key,
title varchar(50) null,
title varchar(64) null,
description text null,
status varchar(50) null,
create_time bigint(13) null,

View File

@ -194,7 +194,7 @@
type="text"
:placeholder="$t('test_track.issue.input_title')"
v-model="testCase.issues.title"
maxlength="100"
maxlength="60"
show-word-limit
/>
<ckeditor :editor="editor" :disabled="isReadOnly" :config="editorConfig"