Merge branch '59621-order-labels-alphabetically-in-issue-boards' into 'master'
Resolve "Order labels alphabetically in issue boards" Closes #59621 See merge request gitlab-org/gitlab-ce!26927
This commit is contained in:
commit
ae91b3219a
2 changed files with 10 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
<script>
|
||||
import _ from 'underscore';
|
||||
import { GlTooltipDirective } from '@gitlab/ui';
|
||||
import { sprintf, __ } from '~/locale';
|
||||
import Icon from '~/vue_shared/components/icon.vue';
|
||||
|
@ -92,6 +93,9 @@ export default {
|
|||
const { referencePath, groupId } = this.issue;
|
||||
return !groupId ? referencePath.split('#')[0] : null;
|
||||
},
|
||||
orderedLabels() {
|
||||
return _.sortBy(this.issue.labels, 'title');
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
isIndexLessThanlimit(index) {
|
||||
|
@ -176,7 +180,7 @@ export default {
|
|||
</div>
|
||||
<div v-if="showLabelFooter" class="board-card-labels prepend-top-4 d-flex flex-wrap">
|
||||
<button
|
||||
v-for="label in issue.labels"
|
||||
v-for="label in orderedLabels"
|
||||
v-if="showLabel(label)"
|
||||
:key="label.id"
|
||||
v-gl-tooltip
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Order labels alphabetically in issue boards
|
||||
merge_request: 26927
|
||||
author:
|
||||
type: changed
|
Loading…
Reference in a new issue