Skip to content

Commit

Permalink
SD-1699 A sandbox without endpoints but with an orchestrator still ne…
Browse files Browse the repository at this point in the history
…eds to display its base URL
  • Loading branch information
gj0dcsa committed Nov 17, 2024
1 parent 27c0c4a commit 4498b95
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions webui/src/app/pages/edit-sandbox/edit-sandbox.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@

<mat-card [ngClass]="'configCard'">
<div class="configPageSubtitle">Connecting to the sandbox (read-only)</div>
<div class="paragraph">Sandbox base URL:</div>
<input
testId="sandboxUrlInput"
class="readOnlyInput"
type = "text"
readonly="readonly"
[value]="originalSandboxConfig.sandboxUrl"
/>
<div *ngIf="!originalSandboxConfig?.sandboxEndpointUriMethods?.length" style="margin-top: 1em;">
This type of sandbox has no endpoints to which your application can make API calls.
</div>
<div *ngIf="originalSandboxConfig?.sandboxEndpointUriMethods?.length">
<div class="paragraph">Sandbox base URL:</div>
<input
testId="sandboxUrlInput"
class="readOnlyInput"
type = "text"
readonly="readonly"
[value]="originalSandboxConfig.sandboxUrl"
/>
<div style="margin-top: 1em;">
Configure your application to make all API requests to these sandbox endpoint URLs:
</div>
Expand Down

0 comments on commit 4498b95

Please sign in to comment.