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

discussion_jump_to_next_button.vue « components « notes « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f87ca097b4040e48ef8fc6cea5629cb2277e310a (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
<script>
import { GlTooltipDirective } from '@gitlab/ui';
import icon from '~/vue_shared/components/icon.vue';

export default {
  name: 'JumpToNextDiscussionButton',
  components: {
    icon,
  },
  directives: {
    GlTooltip: GlTooltipDirective,
  },
};
</script>

<template>
  <div class="btn-group" role="group">
    <button
      ref="button"
      v-gl-tooltip
      class="btn btn-default discussion-next-btn"
      :title="s__('MergeRequests|Jump to next unresolved discussion')"
      @click="$emit('onClick')"
    >
      <icon name="comment-next" />
    </button>
  </div>
</template>