Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dropdown_header.vue « labels_select « sidebar « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b2802650a24702f7d748db44874f3438e69cc3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<script>
import { GlIcon } from '@gitlab/ui';

export default {
  components: {
    GlIcon,
  },
};
</script>

<template>
  <div class="dropdown-title gl-display-flex gl-justify-content-center">
    <span class="gl-ml-auto">{{ __('Assign labels') }}</span>
    <button
      :aria-label="__('Close')"
      type="button"
      class="dropdown-title-button dropdown-menu-close gl-ml-auto"
    >
      <gl-icon name="close" aria-hidden="true" class="dropdown-menu-close-icon" />
    </button>
  </div>
</template>