fix(性能测试): 修改报告名的长度限制
This commit is contained in:
parent
ebf704b4f3
commit
da6bb6d0bb
|
@ -278,6 +278,11 @@ export default {
|
|||
confirmButtonText: this.$t('commons.confirm'),
|
||||
cancelButtonText: this.$t('commons.cancel'),
|
||||
inputValue: report.name,
|
||||
inputValidator: function (value) {
|
||||
if (value.length > 63) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}).then(({value}) => {
|
||||
this.$post('/performance/report/rename', {id: report.id, name: value}, response => {
|
||||
this.initTableData();
|
||||
|
|
Loading…
Reference in New Issue