Commit 62be31c5 authored by Dave Pisek's avatar Dave Pisek

Reviewer feedback: Spelling and css-class removal

parent 21c51acc
...@@ -63,10 +63,7 @@ export default { ...@@ -63,10 +63,7 @@ export default {
<template> <template>
<div class="ci-table js-security-dashboard-table" data-qa-selector="security_report_content"> <div class="ci-table js-security-dashboard-table" data-qa-selector="security_report_content">
<selection-summary v-if="isSelectingVulnerabilities" /> <selection-summary v-if="isSelectingVulnerabilities" />
<div <div class="gl-responsive-table-row table-row-header gl-bg-gray-50 text-2 px-2" role="row">
class="gl-responsive-table-row table-row-header vulnerabilities-row-header gl-bg-gray-50 text-2 px-2"
role="row"
>
<div class="table-section"> <div class="table-section">
<gl-form-checkbox <gl-form-checkbox
:checked="hasSelectedAllVulnerabilities" :checked="hasSelectedAllVulnerabilities"
......
...@@ -36,7 +36,7 @@ export default { ...@@ -36,7 +36,7 @@ export default {
severity() { severity() {
return this.vulnerability.severity || ' '; return this.vulnerability.severity || ' ';
}, },
vulnerabilityNamepace() { vulnerabilityNamespace() {
const { project, location } = this.vulnerability; const { project, location } = this.vulnerability;
if (this.dashboardType === DASHBOARD_TYPES.GROUP) { if (this.dashboardType === DASHBOARD_TYPES.GROUP) {
return project && project.full_name; return project && project.full_name;
...@@ -128,8 +128,8 @@ export default { ...@@ -128,8 +128,8 @@ export default {
:project-name="vulnerability.project.name" :project-name="vulnerability.project.name"
/> />
<br /> <br />
<small v-if="vulnerabilityNamepace" class="gl-text-gray-700 gl-word-break-all"> <small v-if="vulnerabilityNamespace" class="gl-text-gray-700 gl-word-break-all">
{{ vulnerabilityNamepace }} {{ vulnerabilityNamespace }}
</small> </small>
</template> </template>
</div> </div>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment