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.
1 parent 3f82970 commit d4645fdCopy full SHA for d4645fd
web_src/js/features/comp/SearchRepoBox.ts
@@ -17,9 +17,8 @@ export function initCompSearchRepoBox() {
17
onResponse(response: any) {
18
const items = [];
19
for (const item of response.data) {
20
- let title = item.repository.full_name.split('/')[1];
21
items.push({
22
- title,
+ title: item.repository.full_name.split('/')[1],
23
description: item.repository.full_name,
24
});
25
}
0 commit comments