Skip to content

Commit

Permalink
Fixes #37018 - Use correct function signature for fetchBulkParams (Ka…
Browse files Browse the repository at this point in the history
…tello#10830)

(cherry picked from commit 2ffd146)
  • Loading branch information
jeremylenz authored and nadjaheitmann committed Feb 8, 2024
1 parent 5f96cc7 commit 3908688
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ const RepositorySetsTab = () => {
singular: singular || selectedCount === 1,
}));
};
const bulkParams = () => fetchBulkParams('cp_content_id');
const bulkParams = () => fetchBulkParams({ idColumnName: 'cp_content_id' });
const enableRepoSets = () => updateOverrides({ enabled: true, search: bulkParams() });
const disableRepoSets = () => updateOverrides({ enabled: false, search: bulkParams() });
const resetToDefaultRepoSets = () => updateOverrides({ remove: true, search: bulkParams() });
Expand Down

0 comments on commit 3908688

Please sign in to comment.