Unverified Commit cca98477 authored by Jingyu Feng(冯经宇)'s avatar Jingyu Feng(冯经宇) Committed by GitHub
Browse files

Merge pull request #2194 from WeBankPartners/fix_bug

update workflow orch css config
parents 9e46b1fc 2d9f62be
Showing with 8 additions and 14 deletions
+8 -14
......@@ -64,13 +64,7 @@ export default {
this.menus = allCats.map(_ => {
data.forEach(item => {
if (item.category === '' + _.id) {
if (item.source === 'SYSTEM') {
const found = MENUS.find(m => m.code === item.code)
if (found) {
item.displayName = this.$lang === 'zh-CN' ? found.cnName : found.enName
}
}
if (item.category === '' + _.id && item.source !== 'SYSTEM') {
_.children.push(item)
}
})
......
......@@ -14,7 +14,7 @@ export default {
tableColumns: [
{
title: this.$t('source'),
key: 'scopeType'
key: 'scope'
},
{
title: this.$t('name'),
......@@ -22,11 +22,10 @@ export default {
},
{
title: this.$t('table_value'),
key: 'value'
},
{
title: this.$t('description'),
key: 'description'
key: 'value',
render: (h, params) => {
return h('span', params.row.value || params.row.defaultValue)
}
},
{
title: this.$t('status'),
......
......@@ -1257,13 +1257,14 @@ export default {
// hide panal tab item
[data-entry='process-is-executable'],
[data-entry='initiator'],
[data-group='documentation'],
[data-group='historyConfiguration'],
[data-group='jobConfiguration'],
[data-group='externalTaskConfiguration'],
[data-group='candidateStarterConfiguration'],
[data-group='tasklist'],
[data-group='details'],
[data-group='details'] .group-label,
[data-group='async'] {
display: none;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment