Commit e02a2af6 authored by Justin Ho's avatar Justin Ho

Polish tab count and create button in test cases

- Change button to use confirm variant.
- Update tab count badge to use muted variant for consistency
with other issuable_list apps.

Changelog: changed
EE: true
parent d0b20742
...@@ -49,7 +49,7 @@ export default { ...@@ -49,7 +49,7 @@ export default {
<span :title="tab.titleTooltip">{{ tab.title }}</span> <span :title="tab.titleTooltip">{{ tab.title }}</span>
<gl-badge <gl-badge
v-if="tabCounts && isTabCountNumeric(tab)" v-if="tabCounts && isTabCountNumeric(tab)"
variant="neutral" variant="muted"
size="sm" size="sm"
class="gl-tab-counter-badge" class="gl-tab-counter-badge"
> >
......
...@@ -341,7 +341,7 @@ export default { ...@@ -341,7 +341,7 @@ export default {
@sort="handleSortTestCases" @sort="handleSortTestCases"
> >
<template v-if="canCreateTestCase" #nav-actions> <template v-if="canCreateTestCase" #nav-actions>
<gl-button :href="testCaseNewPath" category="primary" variant="success">{{ <gl-button :href="testCaseNewPath" category="primary" variant="confirm">{{
s__('TestCases|New test case') s__('TestCases|New test case')
}}</gl-button> }}</gl-button>
</template> </template>
......
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