Browse Source

repos square

tags/v1.22.12.1^2
chenshihai 2 years ago
parent
commit
ff07b0c016
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      web_src/vuepages/pages/repos/components/ReposList.vue
  2. +1
    -1
      web_src/vuepages/pages/repos/components/SquareTop.vue

+ 1
- 1
web_src/vuepages/pages/repos/components/ReposList.vue View File

@@ -60,7 +60,7 @@ export default {
const contributorsCnt = item.TotalContributorCount <= 6 ? Math.min(contributors.length, item.TotalContributorCount) : item.TotalContributorCount;
return {
...item,
NameShow: this.handlerSearchStr(item.Name, this.q),
NameShow: this.handlerSearchStr(item.Alias, this.q),
DescriptionShow: this.handlerSearchStr(item.Description, this.q),
TopicsShow: (item.Topics || []).map((_item) => {
return {


+ 1
- 1
web_src/vuepages/pages/repos/components/SquareTop.vue View File

@@ -97,7 +97,7 @@ export default {
let dataJ = data[j];
if (dataJ === undefined) break;
html += `<div class="_repo_sw_card">
<div class="_repo_sw_card_title _repo_nowrap"><a href="/${dataJ.OwnerName}/${dataJ.Name}" title="${dataJ.Name}">${dataJ.Name}</a></div>
<div class="_repo_sw_card_title _repo_nowrap"><a href="/${dataJ.OwnerName}/${dataJ.Name}" title="${dataJ.Alias}">${dataJ.Alias}</a></div>
<div class="_repo_sw_card_descr _repo_nowrap_line_2" title="${dataJ.Description}">${dataJ.Description}</div>
<div class="_repo_sw_card_label _repo_nowrap">`
const topics = dataJ.Topics || [];


Loading…
Cancel
Save