Skip to content

Commit

Permalink
ci: apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Aug 3, 2024
1 parent 298d8c2 commit 0baf66c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion examples/vue/column-ordering/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ const table = useVueTable({
},
onColumnOrderChange: order => {
columnOrder.value = order instanceof Function ? order(columnOrder.value) : order
columnOrder.value =
order instanceof Function ? order(columnOrder.value) : order
},
getCoreRowModel: getCoreRowModel(),
debugTable: true,
Expand Down
6 changes: 4 additions & 2 deletions examples/vue/column-pinning/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,12 @@ const table = useVueTable({
},
onColumnOrderChange: order => {
columnOrder.value = order instanceof Function ? order(columnOrder.value) : order
columnOrder.value =
order instanceof Function ? order(columnOrder.value) : order
},
onColumnPinningChange: pinning => {
columnPinning.value = pinning instanceof Function ? pinning(columnPinning.value) : pinning
columnPinning.value =
pinning instanceof Function ? pinning(columnPinning.value) : pinning
},
getCoreRowModel: getCoreRowModel(),
debugTable: true,
Expand Down

0 comments on commit 0baf66c

Please sign in to comment.