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-04-23 00:10:17 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-04-23 00:10:17 +0300
commit63195885abc31f484be5784fd53c75a1825a78c0 (patch)
treef1907d34236eacbcafec176e40c5c4c9c58b04ed /app/assets/javascripts/diffs
parenteab22d334fd451ce793fde56f73568b0f7948ed2 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/diffs')
-rw-r--r--app/assets/javascripts/diffs/components/diff_expansion_cell.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/assets/javascripts/diffs/components/diff_expansion_cell.vue b/app/assets/javascripts/diffs/components/diff_expansion_cell.vue
index cd726818031..4e7dc578193 100644
--- a/app/assets/javascripts/diffs/components/diff_expansion_cell.vue
+++ b/app/assets/javascripts/diffs/components/diff_expansion_cell.vue
@@ -238,7 +238,7 @@ export default {
>
<button
v-if="showExpandDown"
- v-gl-tooltip
+ v-gl-tooltip.left
:title="s__('Diffs|Next 20 lines')"
type="button"
class="js-unfold-down gl-rounded-0 gl-border-0 diff-line-expand-button"
@@ -249,7 +249,7 @@ export default {
</button>
<button
v-if="lineCountBetween !== -1 && lineCountBetween < 20"
- v-gl-tooltip
+ v-gl-tooltip.left
:title="s__('Diffs|Expand all lines')"
type="button"
class="js-unfold-all gl-rounded-0 gl-border-0 diff-line-expand-button"
@@ -260,7 +260,7 @@ export default {
</button>
<button
v-if="showExpandUp"
- v-gl-tooltip
+ v-gl-tooltip.left
:title="s__('Diffs|Previous 20 lines')"
type="button"
class="js-unfold gl-rounded-0 gl-border-0 diff-line-expand-button"