Commit ea86b698 authored by Andrew Fontaine's avatar Andrew Fontaine

Merge branch 'create-epic-button' into 'master'

Update New Epic button

Closes #219866

See merge request gitlab-org/gitlab!36210
parents 25e9abdf 2fd23158
...@@ -7,7 +7,6 @@ import { ...@@ -7,7 +7,6 @@ import {
GlIcon, GlIcon,
GlButton, GlButton,
GlTooltipDirective, GlTooltipDirective,
GlDeprecatedButton,
} from '@gitlab/ui'; } from '@gitlab/ui';
import { __ } from '~/locale'; import { __ } from '~/locale';
...@@ -18,7 +17,6 @@ export default { ...@@ -18,7 +17,6 @@ export default {
components: { components: {
GlFormCheckbox, GlFormCheckbox,
GlIcon, GlIcon,
GlDeprecatedButton,
GlButton, GlButton,
GlForm, GlForm,
GlFormInput, GlFormInput,
...@@ -72,9 +70,14 @@ export default { ...@@ -72,9 +70,14 @@ export default {
<template> <template>
<div class="dropdown epic-create-dropdown"> <div class="dropdown epic-create-dropdown">
<gl-deprecated-button variant="success" class="qa-new-epic-button" data-toggle="dropdown"> <gl-button
category="primary"
variant="success"
class="qa-new-epic-button"
data-toggle="dropdown"
>
{{ __('New epic') }} {{ __('New epic') }}
</gl-deprecated-button> </gl-button>
<div :class="{ 'dropdown-menu-right': alignRight }" class="dropdown-menu"> <div :class="{ 'dropdown-menu-right': alignRight }" class="dropdown-menu">
<gl-form> <gl-form>
......
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