Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-08-18 13:50:51 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-08-18 13:50:51 +0300
commitdb384e6b19af03b4c3c82a5760d83a3fd79f7982 (patch)
tree34beaef37df5f47ccbcf5729d7583aae093cffa0 /app/assets/javascripts/work_items/components/work_item_links/work_item_links.vue
parent54fd7b1bad233e3944434da91d257fa7f63c3996 (diff)
Add latest changes from gitlab-org/gitlab@16-3-stable-eev16.3.0-rc42
Diffstat (limited to 'app/assets/javascripts/work_items/components/work_item_links/work_item_links.vue')
-rw-r--r--app/assets/javascripts/work_items/components/work_item_links/work_item_links.vue40
1 files changed, 25 insertions, 15 deletions
diff --git a/app/assets/javascripts/work_items/components/work_item_links/work_item_links.vue b/app/assets/javascripts/work_items/components/work_item_links/work_item_links.vue
index bfc6ceefccc..a0ff693e156 100644
--- a/app/assets/javascripts/work_items/components/work_item_links/work_item_links.vue
+++ b/app/assets/javascripts/work_items/components/work_item_links/work_item_links.vue
@@ -1,5 +1,11 @@
<script>
-import { GlDropdown, GlDropdownItem, GlIcon, GlLoadingIcon, GlTooltipDirective } from '@gitlab/ui';
+import {
+ GlDisclosureDropdown,
+ GlDisclosureDropdownItem,
+ GlIcon,
+ GlLoadingIcon,
+ GlTooltipDirective,
+} from '@gitlab/ui';
import { isEmpty } from 'lodash';
import { s__ } from '~/locale';
import { convertToGraphQLId, getIdFromGraphQLId } from '~/graphql_shared/utils';
@@ -20,8 +26,8 @@ import WorkItemChildrenWrapper from './work_item_children_wrapper.vue';
export default {
components: {
- GlDropdown,
- GlDropdownItem,
+ GlDisclosureDropdown,
+ GlDisclosureDropdownItem,
GlIcon,
GlLoadingIcon,
WidgetWrapper,
@@ -211,26 +217,30 @@ export default {
</span>
</template>
<template #header-right>
- <gl-dropdown
+ <gl-disclosure-dropdown
v-if="canUpdate && canAddTask"
- right
+ placement="right"
size="small"
- :text="$options.i18n.addChildButtonLabel"
+ :toggle-text="$options.i18n.addChildButtonLabel"
data-testid="toggle-form"
>
- <gl-dropdown-item
+ <gl-disclosure-dropdown-item
data-testid="toggle-create-form"
- @click="showAddForm($options.FORM_TYPES.create)"
+ @action="showAddForm($options.FORM_TYPES.create)"
>
- {{ $options.i18n.createChildOptionLabel }}
- </gl-dropdown-item>
- <gl-dropdown-item
+ <template #list-item>
+ {{ $options.i18n.createChildOptionLabel }}
+ </template>
+ </gl-disclosure-dropdown-item>
+ <gl-disclosure-dropdown-item
data-testid="toggle-add-form"
- @click="showAddForm($options.FORM_TYPES.add)"
+ @action="showAddForm($options.FORM_TYPES.add)"
>
- {{ $options.i18n.addChildOptionLabel }}
- </gl-dropdown-item>
- </gl-dropdown>
+ <template #list-item>
+ {{ $options.i18n.addChildOptionLabel }}
+ </template>
+ </gl-disclosure-dropdown-item>
+ </gl-disclosure-dropdown>
</template>
<template #body>
<div class="gl-new-card-content">