Skip to content

Commit

Permalink
fix pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
phndiaye committed Aug 1, 2024
1 parent e51073d commit 0e6a580
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default class HyperTableV2FilteringRenderersOrdering extends Component<Hy
}

get currentOrderingDirection(): OrderDirection | null {
return this._selectedDirection || this.args.column.order?.direction || null;
return (this._selectedDirection || this.args.column.order?.direction) ?? null;
}

@action
Expand Down

0 comments on commit 0e6a580

Please sign in to comment.