Skip to content

Commit

Permalink
Merge pull request TencentBlueKing#10637 from lockiechen/issue_8125_h…
Browse files Browse the repository at this point in the history
…otfix

feat: pipeline as code issue TencentBlueKing#8125
  • Loading branch information
bkci-bot authored Jul 10, 2024
2 parents cbb3676 + d0831ac commit 0c83ac4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<bk-radio
:class="['bkdevops-radio', { mr15: lineNumber <= 0 }]"
:value="item.value"
:disabled="disabled || item.disabled || readOnly"
:disabled="disabled || item.disabled"
>
<span :class="{
'overflow': true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@
const props = {
value: this.value,
loading: this.isLoading,
disabled: this.disabled || this.readOnly,
// disabled: this.disabled || this.readOnly,
disabled: this.disabled,
searchable: this.searchable,
multiple: this.multiSelect,
clearable: this.clearable,
Expand Down

0 comments on commit 0c83ac4

Please sign in to comment.