Browse Source

fix: link address error in the embedding in websites first example (#18677)

tags/1.3.1
Junjie.M 6 months ago
parent
commit
7b00f35a0d
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      web/app/components/app/overview/embedded/index.tsx

+ 1
- 1
web/app/components/app/overview/embedded/index.tsx View File

iframe: { iframe: {
getContent: (url: string, token: string) => getContent: (url: string, token: string) =>
`<iframe `<iframe
src="${url}${basePath}/chat/${token}"
src="${url}${basePath}/chatbot/${token}"
style="width: 100%; height: 100%; min-height: 700px" style="width: 100%; height: 100%; min-height: 700px"
frameborder="0" frameborder="0"
allow="microphone"> allow="microphone">

Loading…
Cancel
Save