Commit 1564c86a authored by Filipa Lacerda's avatar Filipa Lacerda

Correctly styles tags in jobs sidebar

The tags were using the `label` class
instead of `bagde` which is the new BS class
parent ab0828cf
......@@ -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>
......
---
title: Correctly styles tags in sidebar for job page
merge_request:
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment