mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
fix: conditional check for sortable in HeaderCell.vue (#5069)
This commit is contained in:
parent
82bd98fae9
commit
ee71eab50b
1 changed files with 1 additions and 1 deletions
|
@ -213,7 +213,7 @@ export default {
|
|||
},
|
||||
context: {
|
||||
index: this.index,
|
||||
sortable: this.column.props.sortable === '' || this.column.props.sortable,
|
||||
sortable: this.column?.props?.sortable === '' || this.column?.props?.sortable,
|
||||
sorted: this.isColumnSorted(),
|
||||
resizable: this.resizableColumns,
|
||||
size: this.$parentInstance?.$parentInstance?.size,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue