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

dropdown_title.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: 9ac32ff13c61987b8a5c0a2c938e41a7dca38fd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<script>
export default {
  props: {
    canEdit: {
      type: Boolean,
      required: true,
    },
  },
};
</script>

<template>
  <div class="title hide-collapsed append-bottom-10">
    {{ __('Labels') }}
    <template v-if="canEdit">
      <i
        aria-hidden="true"
        class="fa fa-spinner fa-spin block-loading"
        data-hidden="true"
      >
      </i>
      <button
        type="button"
        class="edit-link btn btn-blank float-right js-sidebar-dropdown-toggle"
      >
        {{ __('Edit') }}
      </button>
    </template>
  </div>
</template>