Commit 5eba893e authored by matejlatin's avatar matejlatin

Replaced the deprecated button

parent 065ee033
<script>
import { GlTooltipDirective, GlDeprecatedButton, GlIcon } from '@gitlab/ui';
import { GlTooltipDirective, GlButton, GlIcon } from '@gitlab/ui';
export default {
name: 'ReplyButton',
components: {
GlIcon,
GlDeprecatedButton,
GlButton,
},
directives: {
GlTooltip: GlTooltipDirective,
......@@ -15,17 +15,17 @@ export default {
<template>
<div class="note-actions-item">
<gl-deprecated-button
<gl-button
ref="button"
v-gl-tooltip
class="note-action-button"
data-track-event="click_button"
data-track-label="reply_comment_button"
variant="transparent"
category="tertiary"
:title="__('Reply to comment')"
@click="$emit('startReplying')"
>
<gl-icon name="comment" class="link-highlight" />
</gl-deprecated-button>
</gl-button>
</div>
</template>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment