Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#1800] Fixed invisible links within service dialog. #1843

Merged
merged 1 commit into from Sep 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [1831](https://github.com/microsoft/BotFramework-Emulator/pull/1831)
- [1832](https://github.com/microsoft/BotFramework-Emulator/pull/1832)
- [1835](https://github.com/microsoft/BotFramework-Emulator/pull/1835)
- [1843](https://github.com/microsoft/BotFramework-Emulator/pull/1843)

## v4.5.2 - 2019 - 07 - 17
## Fixed
Expand Down
Expand Up @@ -97,7 +97,7 @@ export class ConnectServicePromptDialog extends Component<ConnectServicePromptDi
<>
<p>
{`Sign in to your Azure account to select the LUIS applications you'd like to associate with this bot. `}
<a href="http://aka.ms/bot-framework-emulator-LUIS-docs-home" />
<a href="http://aka.ms/bot-framework-emulator-LUIS-docs-home">Learn more about LUIS.</a>
</p>
<p>
{`Alternatively, you can `}
Expand All @@ -116,7 +116,7 @@ export class ConnectServicePromptDialog extends Component<ConnectServicePromptDi
<p>
{'Sign in to your Azure account to select the QnA ' +
"Maker knowledge bases you'd like to associate with this bot. "}
<a href="http://aka.ms/bot-framework-emulator-qna-docs-home" />
<a href="http://aka.ms/bot-framework-emulator-qna-docs-home">Learn more about QnA Maker.</a>
</p>
<p>
{`Alternatively, you can `}{' '}
Expand Down