Skip to content

Commit

Permalink
Show Client Certificate paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Timothy Lim committed Oct 12, 2020
1 parent 984881c commit bb2e590
Showing 1 changed file with 23 additions and 0 deletions.
Expand Up @@ -244,6 +244,29 @@ class WorkspaceSettingsModal extends React.PureComponent<Props, State> {
</PromptButton>
</div>
</div>
<div className="pad-left">
<div>
{certificate.pfx && (
<span>
<strong>PFX:</strong> {certificate.pfx}
</span>
)}
</div>
<div>
{certificate.cert && (
<span>
<strong>CRT:</strong> {certificate.cert}
</span>
)}
</div>
<div>
{certificate.key && (
<span>
<strong>Key:</strong> {certificate.key}
</span>
)}
</div>
</div>
</div>
);
}
Expand Down

0 comments on commit bb2e590

Please sign in to comment.