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

runner_edit_button.vue « components « runner « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 33e0acaf5c0c6359af0b6f1a260879db11071e06 (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
<script>
import { GlButton, GlTooltipDirective } from '@gitlab/ui';
import { I18N_EDIT } from '../constants';

export default {
  components: {
    GlButton,
  },
  directives: {
    GlTooltip: GlTooltipDirective,
  },
  I18N_EDIT,
};
</script>

<template>
  <gl-button
    v-gl-tooltip="$options.I18N_EDIT"
    v-bind="$attrs"
    :aria-label="$options.I18N_EDIT"
    icon="pencil"
    v-on="$listeners"
  />
</template>