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-06-28 09:10:32 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-06-28 09:10:32 +0300
commite9a3e8b891637a79ff6cc5bef9762272f312f04d (patch)
treee7aaf37eb269669268b9a21b9e9717ab5f9cdb9b /app/assets/javascripts/sidebar
parentfda2beae9cedf425a55a052be273c5c0e16a254b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/sidebar')
-rw-r--r--app/assets/javascripts/sidebar/components/assignees/assignee_title.vue13
1 files changed, 1 insertions, 12 deletions
diff --git a/app/assets/javascripts/sidebar/components/assignees/assignee_title.vue b/app/assets/javascripts/sidebar/components/assignees/assignee_title.vue
index 2a9100f0cb5..0dc66750a85 100644
--- a/app/assets/javascripts/sidebar/components/assignees/assignee_title.vue
+++ b/app/assets/javascripts/sidebar/components/assignees/assignee_title.vue
@@ -1,5 +1,5 @@
<script>
-import { GlLoadingIcon, GlIcon } from '@gitlab/ui';
+import { GlLoadingIcon } from '@gitlab/ui';
import { n__, __ } from '~/locale';
import glFeatureFlagMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
@@ -7,7 +7,6 @@ export default {
name: 'AssigneeTitle',
components: {
GlLoadingIcon,
- GlIcon,
},
mixins: [glFeatureFlagMixin()],
props: {
@@ -62,15 +61,5 @@ export default {
>
{{ titleCopy }}
</a>
- <a
- v-if="showToggle"
- :aria-label="__('Toggle sidebar')"
- class="gutter-toggle float-right js-sidebar-toggle"
- :class="{ 'gl-display-block gl-md-display-none!': glFeatures.movedMrSidebar }"
- href="#"
- role="button"
- >
- <gl-icon data-hidden="true" name="chevron-double-lg-right" :size="12" />
- </a>
</div>
</template>