Skip to content

Commit dd1b429

Browse files
authored
Merge branch 'master' into master
2 parents 034ba60 + 0fcd7fe commit dd1b429

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6565
- `component`: Updated timer to use functional component, by [@spyip](https://github.com/spyip) in PR [#2546](https://github.com/microsoft/BotFramework-WebChat/pull/2546)
6666
- Fixes [#2651](https://github.com/microsoft/BotFramework-WebChat/issues/2651). Add `ends-with` string module to ES5 bundle, by [@corinagum](https://github.com/corinagum) in PR [#2654](https://github.com/microsoft/BotFramework-WebChat/pull/2654)
6767
- Fixes [#2655](https://github.com/microsoft/BotFramework-WebChat/issues/2655). Fix Racecondition in connectivity status, by [@curiousite](https://github.com/Curiousite) in PR [#2656](https://github.com/microsoft/BotFramework-WebChat/pull/2656)
68+
- Fixes [#2658](https://github.com/microsoft/BotFramework-WebChat/issues/2658). Fix rendering of markdown images in IE11, by [@corinagum](https://github.com/corinagum) in PR [#2659](https://github.com/microsoft/BotFramework-WebChat/pull/2659)
6869

6970
### Changed
7071

packages/component/src/Styles/StyleSet/TextContent.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint no-magic-numbers: "off" */
22

3-
export default function createTextContentStyle({ bubbleMinHeight, primaryFont, paddingRegular }) {
3+
export default function createTextContentStyle({ bubbleMaxWidth, bubbleMinHeight, primaryFont, paddingRegular }) {
44
return {
55
fontFamily: primaryFont,
66
margin: 0,
@@ -17,7 +17,8 @@ export default function createTextContentStyle({ bubbleMinHeight, primaryFont, p
1717

1818
'&.markdown': {
1919
'& img': {
20-
maxWidth: '100%'
20+
maxWidth: bubbleMaxWidth,
21+
width: '100%'
2122
},
2223

2324
'& pre': {

0 commit comments

Comments
 (0)