Correctly styles tags in jobs sidebar

The tags were using the `label` class
instead of `bagde` which is the new BS class
This commit is contained in:
Filipa Lacerda 2018-11-23 11:36:41 +00:00
parent ab0828cf0f
commit 1564c86adc
No known key found for this signature in database
GPG Key ID: 569522463C8A0CC7
2 changed files with 6 additions and 1 deletions

View File

@ -199,7 +199,7 @@ export default {
/>
<p v-if="job.tags.length" class="build-detail-row js-job-tags">
<span class="build-light-text"> {{ __('Tags:') }} </span>
<span v-for="(tag, i) in job.tags" :key="i" class="label label-primary">
<span v-for="(tag, i) in job.tags" :key="i" class="badge badge-primary">
{{ tag }}
</span>
</p>

View File

@ -0,0 +1,5 @@
---
title: Correctly styles tags in sidebar for job page
merge_request:
author:
type: fixed