fix(测试计划): 修复英文下标签未匹配问题

This commit is contained in:
WangXu10 2024-08-20 14:56:58 +08:00 committed by Craftsman
parent 1faebb0b2c
commit ffd897e9bd
2 changed files with 2 additions and 2 deletions

View File

@ -272,7 +272,7 @@ download_template_failed=Download template failed
functional_case=Functional case functional_case=Functional case
xmind_prerequisite=Prerequisite xmind_prerequisite=Prerequisite
xmind_description=Remark xmind_description=Remark
xmind_tags=tags xmind_tags=Tag
xmind_textDescription=Text description xmind_textDescription=Text description
xmind_expectedResult=Expected result xmind_expectedResult=Expected result
xmind_step=Step xmind_step=Step

View File

@ -864,7 +864,7 @@ public class FunctionalCaseFileService {
String content = matcher.group(1); String content = matcher.group(1);
return content; return content;
} }
return StringUtils.EMPTY; return html;
} }