summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2019-07-19 16:58:29 +0000
committerPhil Hughes <me@iamphill.com>2019-07-19 16:58:29 +0000
commit2db1317b92a62b8f1b4089c44d85442f0d8263f8 (patch)
tree8390fd61f8a66eeb28391c6755acb3b8a6f8a3c5
parent2e56b134687ccc8043f14eef4c5d0bfa9e1fd370 (diff)
parent3d7ed053137c97e1d52ccf9d8bd285585b32ffc6 (diff)
downloadgitlab-ce-2db1317b92a62b8f1b4089c44d85442f0d8263f8.tar.gz
Merge branch 'fix-alignment-on-security-reports' into 'master'
Fixes the alignment on reports See merge request gitlab-org/gitlab-ce!30839
-rw-r--r--app/assets/javascripts/reports/components/report_item.vue2
-rw-r--r--app/assets/javascripts/reports/components/summary_row.vue4
-rw-r--r--changelogs/unreleased/fix-alignment-on-security-reports.yml5
3 files changed, 7 insertions, 4 deletions
diff --git a/app/assets/javascripts/reports/components/report_item.vue b/app/assets/javascripts/reports/components/report_item.vue
index d477fafd3f5..f3f7d2648a8 100644
--- a/app/assets/javascripts/reports/components/report_item.vue
+++ b/app/assets/javascripts/reports/components/report_item.vue
@@ -45,7 +45,7 @@ export default {
<template>
<li
:class="{ 'is-dismissed': issue.isDismissed }"
- class="report-block-list-issue justify-content-center align-items-center"
+ class="report-block-list-issue align-items-center"
>
<issue-status-icon
v-if="showReportSectionStatusIcon"
diff --git a/app/assets/javascripts/reports/components/summary_row.vue b/app/assets/javascripts/reports/components/summary_row.vue
index 1caf52431e2..aba798e63d0 100644
--- a/app/assets/javascripts/reports/components/summary_row.vue
+++ b/app/assets/javascripts/reports/components/summary_row.vue
@@ -44,9 +44,7 @@ export default {
};
</script>
<template>
- <div
- class="report-block-list-issue report-block-list-issue-parent justify-content-center align-items-center"
- >
+ <div class="report-block-list-issue report-block-list-issue-parent align-items-center">
<div class="report-block-list-icon append-right-default">
<gl-loading-icon
v-if="statusIcon === 'loading'"
diff --git a/changelogs/unreleased/fix-alignment-on-security-reports.yml b/changelogs/unreleased/fix-alignment-on-security-reports.yml
new file mode 100644
index 00000000000..5339b6d764d
--- /dev/null
+++ b/changelogs/unreleased/fix-alignment-on-security-reports.yml
@@ -0,0 +1,5 @@
+---
+title: Fixes alignment issues with reports
+merge_request: 30839
+author:
+type: fixed