Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sgalsaleh committed Oct 4, 2023
1 parent 6aca36a commit 3b443ab
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
4 changes: 3 additions & 1 deletion web/src/components/apps/HelmVMClusterManagement.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,9 @@ export class HelmVMClusterManagement extends Component {
drainNode={
helmvm?.isHelmVMEnabled ? this.onDrainNodeClick : null
}
deleteNode={helmvm?.isHelmVMEnabled ? this.deleteNode : null}
deleteNode={
helmvm?.isHelmVMEnabled ? this.deleteNode : null
}
/>
))}
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class AnalyzerRedactorReportRow extends React.Component {

return (
<div
className="flex flex-auto ActiveDownstreamVersionRow--wrapper"
className="flex flex-auto RedactorReportRow--wrapper"
key={redactor}
>
<div className="flex flex1 alignItems--center">
Expand Down
2 changes: 0 additions & 2 deletions web/src/scss/components/apps/AppVersionHistory.scss
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,6 @@ $cell-width: 140px;
width: $cell-width;
}

.ActiveDownstreamVersionRow--wrapper,

.gh-version-detail-text {
position: relative;
top: 1px;
Expand Down
11 changes: 8 additions & 3 deletions web/src/scss/components/troubleshoot/SupportBundleAnalysis.scss
Original file line number Diff line number Diff line change
Expand Up @@ -402,9 +402,14 @@
}
}

.ActiveDownstreamVersionRow--wrapper .icon.u-iconFullArrowGray {
margin-left: 10px;
top: 2px;
.RedactorReportRow--wrapper {
padding: 12px;
border-top: 1px solid #dfdfdf;

.icon.u-iconFullArrowGray {
margin-left: 100px;
top: 20px;
}
}

/* ≥ 960px */
Expand Down

0 comments on commit 3b443ab

Please sign in to comment.