Skip to content

Commit

Permalink
Fix quick-start output variable name for custom domain
Browse files Browse the repository at this point in the history
  • Loading branch information
philipws committed Sep 27, 2023
1 parent f8517b7 commit 4472d1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/assets/js/quick-start.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ function handleForm(event) {

if (data.customDomainEnable === "on") {
appendSection('Custom Domain')
appendStep('Set custom domain name', `export webUiCustomDomain="true"`)
appendStep('Set custom domain certificate', `export webUiCustomDomain="${data.customDomainCert}"`)
appendStep('Set custom domain name', `export webUiCustomDomain="${data.customDomainName}"`)
appendStep('Set custom domain certificate', `export webUiCustomDomainCertificate="${data.customDomainCert}"`)
};
if (data.sourceGitService){
switch (data.sourceGitService) {
Expand Down

0 comments on commit 4472d1c

Please sign in to comment.