Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug 1834293: Unnecessary optional chaining after ternary operator check #5382

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions frontend/public/components/persistent-volume-claim.jsx
Expand Up @@ -127,11 +127,11 @@ const PVCTableRow = ({ obj, index, key, style }) => {
{obj?.spec?.storageClassName ? (
<ResourceLink
kind="StorageClass"
name={obj?.spec?.storageClassName}
title={obj?.spec?.storageClassName}
name={obj.spec.storageClassName}
title={obj.spec.storageClassName}
/>
) : (
<div className="text-muted">-</div>
'-'
)}
</TableData>
<TableData className={tableColumnClasses[6]}>
Expand Down