Commit 139f2431 authored by Olena Horal-Koretska's avatar Olena Horal-Koretska

Merge branch...

Merge branch '229290-migrate-bootstrap-button-to-gitlab-ui-glbutton-in-ee-app-assets-javascripts-boards' into 'master'

Migrate Bootstrap button to GlButton in milestones_list_item.vue

Closes #229290

See merge request gitlab-org/gitlab!41894
parents 4b82e445 91476b56
<script>
import { GlButton } from '@gitlab/ui';
export default {
components: {
GlButton,
},
props: {
item: {
type: Object,
......@@ -15,11 +20,9 @@ export default {
</script>
<template>
<li class="filter-dropdown-item" @click="handleItemClick">
<button class="btn btn-link dropdown-user" type="button">
<div class="dropdown-user-details">
<div :title="item.title">{{ item.title }}</div>
</div>
</button>
<li>
<gl-button category="tertiary" class="gl-rounded-0!" @click="handleItemClick">
<span class="gl-white-space-normal">{{ item.title }}</span>
</gl-button>
</li>
</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