remove use of span for svg and status text

This commit is contained in:
Regis 2016-12-24 14:04:17 -07:00
parent ce22604eb9
commit e56254d38a

View file

@ -18,9 +18,12 @@
},
},
template: `
<td class="commit-link">
<a :class='cssClasses' :href='pipeline.details.status.details_path'>
<span v-html='svg + pipeline.details.status.text'></span>
<td>
<a
:class='cssClasses'
:href='pipeline.details.status.details_path'
v-html='svg + pipeline.details.status.text'
>
</a>
</td>
`,