loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove stars in dashboard repo list (#23530)

Discussion is here: https://github.com/go-gitea/gitea/pull/22816

authored by

yp05327 and committed by
GitHub
06c067bb 7692240d

+1 -5
+1 -5
web_src/js/components/DashboardRepoList.vue
··· 72 72 <ul class="repo-owner-name-list"> 73 73 <li v-for="repo in repos" :class="{'private': repo.private || repo.internal}" :key="repo.id"> 74 74 <a class="repo-list-link gt-df gt-ac gt-sb" :href="repo.link"> 75 - <div class="item-name gt-df gt-ac gt-f1 gt-mr-2"> 75 + <div class="item-name gt-df gt-ac gt-f1"> 76 76 <svg-icon :name="repoIcon(repo)" :size="16" class-name="gt-mr-2"/> 77 77 <div class="text gt-bold truncate gt-ml-1">{{ repo.full_name }}</div> 78 78 <span v-if="repo.archived"> 79 79 <svg-icon name="octicon-archive" :size="16" class-name="gt-ml-2"/> 80 80 </span> 81 - </div> 82 - <div class="text light grey gt-df gt-ac" v-if="isStarsEnabled"> 83 - {{ repo.stars_count }} 84 - <svg-icon name="octicon-star" :size="16" class-name="gt-ml-2"/> 85 81 </div> 86 82 </a> 87 83 </li>