Commit 91476b56 authored by Marcin Sedlak-Jakubowski's avatar Marcin Sedlak-Jakubowski Committed by Olena Horal-Koretska

Migrate Bootstrap button to GitLab UI button

MR: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/41894
parent a90559bd
<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