Fix: [code-1450] debounce in tag search filter (#1039)

This commit is contained in:
Ritik Kapoor 2024-02-12 16:17:06 +00:00 committed by Harness
parent 40e5b84ba1
commit 143b0bf5ad

View File

@ -67,9 +67,9 @@ export function RepositoryTagsContent({ repoMetadata }: Pick<GitInfoProps, 'repo
sort: 'date',
order: 'desc',
include_commit: true,
query: searchTerm,
debounce: 500
}
query: searchTerm
},
debounce: 500
})
useEffect(() => {