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: eb837be165b04de6c810b229db619b9549dc78fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<script>
export default {};
</script>

<template>
  <div class="dropdown-title">
    <span>{{ __('Assign labels') }}</span>
    <button
      :aria-label="__('Close')"
      type="button"
      class="dropdown-title-button dropdown-menu-close"
    >
      <i aria-hidden="true" class="fa fa-times dropdown-menu-close-icon" data-hidden="true"> </i>
    </button>
  </div>
</template>