Skip to content

Commit

Permalink
fix: fix target_cname in proxy ui (#22323)
Browse files Browse the repository at this point in the history
fix target_cname in proxy ui
  • Loading branch information
frankh committed May 16, 2024
1 parent d6b837c commit 4269d79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/scenes/settings/project/Proxy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ function CreateRecordForm(): JSX.Element {
</div>
{waitingRecords.map((r) => (
<CodeSnippet key={r.id} language={Language.HTTP}>
{r.domain + ' -> ' + r.cname_target}
{r.domain + ' -> ' + r.target_cname}

Check failure on line 144 in frontend/src/scenes/settings/project/Proxy.tsx

View workflow job for this annotation

GitHub Actions / Code quality checks

Property 'target_cname' does not exist on type 'ProxyRecord'.
</CodeSnippet>
))}
<div className="flex justify-end">
Expand Down

0 comments on commit 4269d79

Please sign in to comment.