Skip to content

Commit

Permalink
chore support new spec-compliant "https" DRS access type
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Oct 25, 2023
1 parent a0aed42 commit 259b7ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/manager/drs/ManagerDRSContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ const ManagerDRSContent = () => {
<div key={i} style={{ display: "flex", gap: "0.8em", alignItems: "baseline" }}>
<span style={{ fontWeight: "bold" }}>{type.toLocaleUpperCase()}:</span>
<span style={{ fontFamily: "monospace" }}>
{type === "http" ? (
{["http", "https"].includes(type) ? ( // "http" for back-compat
<a href={url?.url} target="_blank" rel="noreferrer">
{url?.url}
</a>
Expand Down

0 comments on commit 259b7ba

Please sign in to comment.