We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eed304 commit 341ff54Copy full SHA for 341ff54
src/frontend/components/app/sort-link.tsx
@@ -38,6 +38,7 @@ const checkSortProps = (
38
nextProps: Readonly<SortLinkProps>,
39
) => (prevProps.direction === nextProps.direction
40
&& prevProps.property.propertyPath === nextProps.property.propertyPath
41
- && prevProps.sortBy === nextProps.sortBy)
+ && prevProps.sortBy === nextProps.sortBy
42
+ && prevProps.property.resourceId === nextProps.property.resourceId)
43
44
export default memo(SortLink, checkSortProps)
0 commit comments