Skip to content

Commit

Permalink
Updated link location to SDK release, adds link to documenation on th…
Browse files Browse the repository at this point in the history
…e About page (#7339)

Co-authored-by: Soroush <[email protected]>
  • Loading branch information
cwhitten and hatpick authored Apr 23, 2021
1 parent 1f22458 commit 99a74b9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Composer/packages/client/config/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function getClientEnvironment(publicUrl) {
// images into the `src` and `import` them in code to get their paths.
PUBLIC_URL: publicUrl,
GIT_SHA: getGitSha().toString().replace('\n', ''),
SDK_PACKAGE_VERSION: '4.12.2', // TODO: change this when Composer supports custom schema/custom runtime
SDK_PACKAGE_VERSION: '4.12.0', // TODO: change this when Composer supports custom schema/custom runtime
COMPOSER_VERSION: getComposerVersion(),
LOCAL_PUBLISH_PATH:
process.env.LOCAL_PUBLISH_PATH || path.resolve(process.cwd(), '../../../extensions/localPublish/hostedBots'),
Expand Down
9 changes: 7 additions & 2 deletions Composer/packages/client/src/pages/about/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const About: React.FC<RouteComponentProps> = () => {
<div css={about.diagnosticsInfoTextAlignLeft}>{formatMessage(`SDK runtime packages`)}</div>
<div css={about.diagnosticsInfoTextAlignLeft}>
<Link
href={`https://www.nuget.org/packages/Microsoft.Bot.Builder/${process.env.SDK_PACKAGE_VERSION}`}
href={`https://github.com/microsoft/botframework-sdk/releases/tag/${process.env.SDK_PACKAGE_VERSION}`}
style={{ marginLeft: '5px', textDecoration: 'underline' }}
target={'_blank'}
>
Expand All @@ -51,13 +51,18 @@ export const About: React.FC<RouteComponentProps> = () => {
</div>
</div>
</div>
<div css={about.linkRow}>
<Link href={'https://docs.microsoft.com/en-us/composer/introduction'} styles={about.helpLink} target={'_blank'}>
{formatMessage(`Documentation`)}
</Link>
</div>
<div css={about.linkRow}>
<Link
href={'https://github.com/microsoft/BotFramework-Composer/issues/new/choose'}
styles={about.helpLink}
target={'_blank'}
>
{formatMessage(`Getting Help`)}
{formatMessage(`Report a bug or request a feature`)}
</Link>
</div>
<div css={about.linkContainer}>
Expand Down

0 comments on commit 99a74b9

Please sign in to comment.