Fixed duplicate checkboxes
parent
932164462f
commit
e82f6f490a
|
@ -4,7 +4,7 @@
|
|||
<span class="p-treetable-toggler p-unselectable-text" @click="toggle" v-if="col.expander" :style="togglerStyle">
|
||||
<i :class="togglerIcon"></i>
|
||||
</span>
|
||||
<div class="p-checkbox p-treetable-checkbox p-component" @click="toggleCheckbox" v-if="checkboxSelectionMode">
|
||||
<div class="p-checkbox p-treetable-checkbox p-component" @click="toggleCheckbox" v-if="checkboxSelectionMode && col.expander">
|
||||
<div class="p-hidden-accessible">
|
||||
<input type="checkbox" />
|
||||
</div>
|
||||
|
|
|
@ -70,7 +70,7 @@ import NodeService from '../../service/NodeService';
|
|||
export default {
|
||||
data() {
|
||||
return {
|
||||
nodes: null,
|
||||
nodes: null
|
||||
}
|
||||
},
|
||||
nodeService: null,
|
||||
|
@ -95,7 +95,7 @@ import TreeTableSubMenu from './TreeTableSubMenu';
|
|||
export default {
|
||||
data() {
|
||||
return {
|
||||
nodes: null,
|
||||
nodes: null
|
||||
}
|
||||
},
|
||||
nodeService: null,
|
||||
|
|
Loading…
Reference in New Issue