]> source.dussan.org Git - gitea.git/commitdiff
Mute repo names in dashboard repo list (#24811)
authorYarden Shoham <git@yardenshoham.com>
Fri, 19 May 2023 17:03:09 +0000 (20:03 +0300)
committerGitHub <noreply@github.com>
Fri, 19 May 2023 17:03:09 +0000 (17:03 +0000)
# Before

![image](https://github.com/go-gitea/gitea/assets/20454870/24b80212-4a4d-44a7-99d5-a8c6b207225e)

# After

![image](https://github.com/go-gitea/gitea/assets/20454870/565b242a-f65d-450c-b43b-c4539a0f8b28)

Signed-off-by: Yarden Shoham <git@yardenshoham.com>
Co-authored-by: Giteabot <teabot@gitea.io>
web_src/js/components/DashboardRepoList.vue

index 84ee8866181ab82cbba1d25f3a44268300abd011..a434eee436e7affd22b20f0b0a638f404b5a8640 100644 (file)
@@ -71,7 +71,7 @@
       <div v-if="repos.length" class="ui attached table segment gt-rounded-bottom">
         <ul class="repo-owner-name-list">
           <li v-for="repo in repos" :key="repo.id">
-            <a class="repo-list-link gt-df gt-ac gt-sb" :href="repo.link">
+            <a class="repo-list-link muted gt-df gt-ac gt-sb" :href="repo.link">
               <div class="item-name gt-df gt-ac gt-f1">
                 <svg-icon :name="repoIcon(repo)" :size="16" class-name="gt-mr-2"/>
                 <div class="text gt-bold truncate gt-ml-1">{{ repo.full_name }}</div>