Skip to content

Commit

Permalink
fix(columnsFilter): 修复列设置简单模式disabled和show无效的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
greper committed Nov 20, 2023
1 parent e455348 commit 80fd97a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<component
:is="ui.col.name"
v-for="(element, key) in currentColumns"
v-show="original[key]?.__show !== false"
v-show="original[element.key]?.__show !== false"
:key="key"
:span="6"
>
<component
:is="ui.checkbox.name"
v-model:[ui.checkbox.modelValue]="element.show"
:disabled="original[key]?.__disabled === true"
:disabled="original[element.key]?.__disabled === true"
class="item-label"
:title="buildText(element)"
>
Expand Down

0 comments on commit 80fd97a

Please sign in to comment.