diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-05-26 21:07:45 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-05-26 21:07:45 +0000 |
commit | ea335f33ff8c6870e641385a254c1f993bb04038 (patch) | |
tree | 2f2c7b69388e11c15864bbe5e9f052699c094319 /app/assets/javascripts/repository | |
parent | 6ee98e127334fd235f251c4a4a76a396f301ee77 (diff) | |
download | gitlab-ce-ea335f33ff8c6870e641385a254c1f993bb04038.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/repository')
-rw-r--r-- | app/assets/javascripts/repository/components/table/row.vue | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/app/assets/javascripts/repository/components/table/row.vue b/app/assets/javascripts/repository/components/table/row.vue index 34424121390..d5363016335 100644 --- a/app/assets/javascripts/repository/components/table/row.vue +++ b/app/assets/javascripts/repository/components/table/row.vue @@ -147,8 +147,11 @@ export default { class="mr-1 position-relative text-secondary" /><span class="position-relative">{{ fullPath }}</span> </component> - <!-- eslint-disable-next-line @gitlab/vue-require-i18n-strings --> - <gl-badge v-if="lfsOid" variant="default" class="label-lfs ml-1">LFS</gl-badge> + <!-- eslint-disable @gitlab/vue-require-i18n-strings --> + <gl-badge v-if="lfsOid" variant="muted" size="sm" class="ml-1" data-qa-selector="label-lfs" + >LFS</gl-badge + > + <!-- eslint-enable @gitlab/vue-require-i18n-strings --> <template v-if="isSubmodule"> @ <gl-link :href="submoduleTreeUrl" class="commit-sha">{{ shortSha }}</gl-link> </template> |