Skip to content

Commit

Permalink
feat:stage 审核支持 checklist 确认场景 TencentBlueKing#10920
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 20804
  • Loading branch information
useryuyu committed Oct 16, 2024
1 parent 1f9355f commit 15e3e66
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
class="clear"
>
<bk-checkbox
v-model="form.value"
v-model="form.value "
>
</bk-checkbox>
<span class="clear-name">{{ form.chineseName }}</span>
<span class="clear-name">{{ getParamKey(form) }}</span>
</div>

<bk-radio-group
Expand Down Expand Up @@ -84,6 +84,9 @@
isSelectorParam (type) {
return isMultipleParam(type) || isEnumParam(type)
},
getParamKey (param) {
return param.chineseName || (param.key || '').replace(/^variables\./, '')
}
}
}
Expand Down

0 comments on commit 15e3e66

Please sign in to comment.