Skip to content

Commit

Permalink
Merge pull request #317 from bento-platform/chore/support-new-drs-htt…
Browse files Browse the repository at this point in the history
…ps-access

chore(manager): support new spec-compliant "https" DRS access type
  • Loading branch information
davidlougheed authored Oct 25, 2023
2 parents a0aed42 + 259b7ba commit bfaa922
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 bfaa922

Please sign in to comment.