Commit c4e81129 authored by Ezekiel Kigbo's avatar Ezekiel Kigbo

Merge branch 'justin_ho-polish-test-cases-list-ui' into 'master'

Polish tab count and create button in test cases

See merge request gitlab-org/gitlab!66608
parents a78cbc81 5ff0b742
...@@ -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"
> >
......
...@@ -149,6 +149,7 @@ export default { ...@@ -149,6 +149,7 @@ export default {
<labels-select <labels-select
:allow-label-edit="canUpdateLabels" :allow-label-edit="canUpdateLabels"
:allow-multiselect="true" :allow-multiselect="true"
:allow-scoped-labels="true"
:selected-labels="issue.labels" :selected-labels="issue.labels"
:labels-fetch-path="issueLabelsPath" :labels-fetch-path="issueLabelsPath"
:labels-filter-base-path="issuesListPath" :labels-filter-base-path="issuesListPath"
......
...@@ -339,7 +339,7 @@ export default { ...@@ -339,7 +339,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