We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
X-Hits
1 parent e35a094 commit b9492a9Copy full SHA for b9492a9
static/app/components/feedback/list/feedbackList.tsx
@@ -40,7 +40,9 @@ export default function FeedbackList() {
40
[queryResult.data?.pages]
41
);
42
const checkboxState = useListItemCheckboxContext({
43
- hits: issues.length,
+ hits: Number(
44
+ queryResult.data?.pages[0]?.[2]?.getResponseHeader('X-Hits') ?? issues.length
45
+ ),
46
knownIds: issues.map(issue => issue.id),
47
queryKey: listQueryKey,
48
});
0 commit comments