Skip to content

Commit

Permalink
fix: ensure sorting option reads prop correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph-Burke committed Apr 28, 2022
1 parent 5485b64 commit 269c662
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/filterable-table/FilterableTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ export default {
const defaultOptionsToMerge = Object.prototype.hasOwnProperty.call(providedOptions, 'columns') ? defaultOptionsWithoutColumns : DEFAULT_OPTIONS
const options = { ...merge(providedOptions, defaultOptionsToMerge) }
const options = merge(defaultOptionsToMerge, providedOptions)
const obj = {
tableId: this.id,
options
Expand Down

0 comments on commit 269c662

Please sign in to comment.