提交 781a821a 编写于 作者: Z zhaoke

* Fix issue

上级 ff50adc4
......@@ -179,7 +179,9 @@ func FilterCases(cases []string, conf commDomain.WorkspaceConf) (casesToRun, cas
interpreter := configHelper.GetFieldVal(conf, stringUtils.UcFirst(lang))
if interpreter == "-" || interpreter == "" {
interpreter = ""
casesToIgnore = append(casesToIgnore, cs)
if lang != "bat" {
casesToIgnore = append(casesToIgnore, cs)
}
}
if lang != "bat" && interpreter == "" { // ignore the ones with no interpreter set
continue
......
......@@ -90,6 +90,7 @@ export default {
'execution.execTask': 'Execute By Task',
'execution.execUnit': 'Execute UnitTest',
'workspace': 'Work Dir',
'filter': 'Filter',
'dir': 'Dir',
'create_workspace': 'Create WorkDir',
'edit_workspace': 'Edit WorkDir',
......
......@@ -98,6 +98,7 @@ export default {
'execution.execTask': '执行任务',
'execution.execUnit': '执行单元测试',
'workspace': '工作目录',
'filter': '筛选',
'dir': '目录',
'create_workspace': '新建工作目录',
'edit_workspace': '编辑工作目录',
......
<template>
<div class="popper layer rounded" :style="menuFinalStyle" ref="menuRef">
<div class="popper layer rounded" :style="menuFinalStyle" ref="menuRef" id="filterModal">
<template v-if="state.show">
<div class="tab-group">
<div
......
<template>
<ZModal
id="syncFromZentaoFormModal"
:showModal="showModalRef"
@onCancel="cancel"
@onOk="submit"
......
......@@ -34,6 +34,7 @@
</FilterModal>
<Button
id="filterBtn"
:hint="t('filter')"
class="filter-btn"
:label="filerLabel"
v-show="currSite.id != 1"
......
<template>
<ZModal
id="siteFormModal"
:showModal="showModalRef"
@onCancel="cancel"
@onOk="submit"
......
<template>
<ZModal
id="workspaceFormModal"
:showModal="showModalRef"
@onCancel="cancel"
@onOk="submit"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册