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>2022-05-19 06:08:03 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-05-19 06:08:03 +0300
commit5b20366d04e3c672a37954f2fc374ca81296c4c1 (patch)
treea01ea0170d34df3866bbbcea8cd7cf9c5c6f452d /app/assets/javascripts/notes
parentca98ae2df53ad032fd7877f5f907fdca17e43158 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/notes')
-rw-r--r--app/assets/javascripts/notes/components/discussion_counter.vue12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/assets/javascripts/notes/components/discussion_counter.vue b/app/assets/javascripts/notes/components/discussion_counter.vue
index f746f7ed0ed..eedcb0c09d4 100644
--- a/app/assets/javascripts/notes/components/discussion_counter.vue
+++ b/app/assets/javascripts/notes/components/discussion_counter.vue
@@ -75,25 +75,25 @@ export default {
<gl-button-group class="gl-ml-3">
<gl-button
v-gl-tooltip.hover
- :title="__('Jump to previous unresolved thread')"
- :aria-label="__('Jump to previous unresolved thread')"
+ :title="__('Go to previous unresolved thread')"
+ :aria-label="__('Go to previous unresolved thread')"
class="discussion-previous-btn gl-rounded-base! gl-px-2!"
data-track-action="click_button"
data-track-label="mr_previous_unresolved_thread"
data-track-property="click_previous_unresolved_thread_top"
- icon="angle-up"
+ icon="chevron-lg-up"
category="tertiary"
@click="jumpToPreviousDiscussion"
/>
<gl-button
v-gl-tooltip.hover
- :title="__('Jump to next unresolved thread')"
- :aria-label="__('Jump to next unresolved thread')"
+ :title="__('Go to next unresolved thread')"
+ :aria-label="__('Go to next unresolved thread')"
class="discussion-next-btn gl-rounded-base! gl-px-2!"
data-track-action="click_button"
data-track-label="mr_next_unresolved_thread"
data-track-property="click_next_unresolved_thread_top"
- icon="angle-down"
+ icon="chevron-lg-down"
category="tertiary"
@click="jumpToNextDiscussion"
/>