Skip to content

Commit

Permalink
Merge pull request #200 from webitel/hotfix/history-table-sort
Browse files Browse the repository at this point in the history
hotfix: sort arrows fixed for history table [WTEL-4113]
  • Loading branch information
dlohvinov authored Jan 9, 2024
2 parents 5e7050e + 2044648 commit d6b16b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@webitel/ui-sdk",
"version": "23.12.129",
"version": "23.12.130",
"private": false,
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion src/modules/QueryFilters/mixins/sortFilterMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default {

setValue({ column, order }) {
const headers = this.headers.map((header) => {
const sortFieldValue = header?.sort;
const sortFieldValue = header?.sort && null;
return {
...header,
sort: header === column ? order : sortFieldValue,
Expand Down

0 comments on commit d6b16b7

Please sign in to comment.