Browse Source

fix issue

tags/v1.22.1.3
zhoupzh 3 years ago
parent
commit
7975ab3a14
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      templates/org/team/repositories.tmpl
  2. +2
    -2
      web_src/js/index.js

+ 1
- 1
templates/org/team/repositories.tmpl View File

@@ -50,7 +50,7 @@
{{else}}
{{svg "octicon-repo" 16}}
{{end}}
<strong>{{$.Org.Name}}/{{.Name}}</strong>
<strong>{{$.Org.Name}}/{{.Alias}}</strong>
</a>
</div>
{{else}}


+ 2
- 2
web_src/js/index.js View File

@@ -2411,8 +2411,8 @@ function searchRepositories() {
const items = [];
$.each(response.data, (_i, item) => {
items.push({
title: item.full_name.split('/')[1],
description: item.full_name
title: item.full_display_name.split('/')[1],
description: item.full_display_name
});
});



Loading…
Cancel
Save