Commit 4a3e182f authored by Jose Ivan Vargas's avatar Jose Ivan Vargas

Merge branch 'buttons-board-sidebar' into 'master'

Updated board sidebar buttons

Closes #219900

See merge request gitlab-org/gitlab!37010
parents 3c377535 48f58f4b
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
import { import {
GlDrawer, GlDrawer,
GlLabel, GlLabel,
GlDeprecatedButton, GlButton,
GlFormInput, GlFormInput,
GlAvatarLink, GlAvatarLink,
GlAvatarLabeled, GlAvatarLabeled,
...@@ -35,7 +35,7 @@ export default { ...@@ -35,7 +35,7 @@ export default {
components: { components: {
GlDrawer, GlDrawer,
GlLabel, GlLabel,
GlDeprecatedButton, GlButton,
GlFormInput, GlFormInput,
GlAvatarLink, GlAvatarLink,
GlAvatarLabeled, GlAvatarLabeled,
...@@ -210,11 +210,11 @@ export default { ...@@ -210,11 +210,11 @@ export default {
<div class="d-flex justify-content-between flex-column"> <div class="d-flex justify-content-between flex-column">
<div class="d-flex justify-content-between align-items-center mb-2"> <div class="d-flex justify-content-between align-items-center mb-2">
<label class="m-0">{{ $options.wipLimitText }}</label> <label class="m-0">{{ $options.wipLimitText }}</label>
<gl-deprecated-button <gl-button
class="js-edit-button h-100 border-0 gl-line-height-14-deprecated-no-really-do-not-use-me text-dark" class="js-edit-button h-100 border-0 text-dark"
variant="link" variant="link"
@click="showInput" @click="showInput"
>{{ $options.editLinkText }}</gl-deprecated-button >{{ $options.editLinkText }}</gl-button
> >
</div> </div>
<gl-form-input <gl-form-input
...@@ -235,11 +235,11 @@ export default { ...@@ -235,11 +235,11 @@ export default {
<p class="js-wip-limit bold m-0 text-secondary">{{ activeListWipLimit }}</p> <p class="js-wip-limit bold m-0 text-secondary">{{ activeListWipLimit }}</p>
<template v-if="wipLimitIsSet"> <template v-if="wipLimitIsSet">
<span class="m-1">-</span> <span class="m-1">-</span>
<gl-deprecated-button <gl-button
class="js-remove-limit h-100 border-0 gl-line-height-14-deprecated-no-really-do-not-use-me text-secondary" class="js-remove-limit h-100 border-0 text-secondary"
variant="link" variant="link"
@click="clearWipLimit" @click="clearWipLimit"
>{{ $options.removeLimitText }}</gl-deprecated-button >{{ $options.removeLimitText }}</gl-button
> >
</template> </template>
</div> </div>
......
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