File tree Expand file tree Collapse file tree 1 file changed +13
-8
lines changed
app/products/playbooks/screens/playbook_run Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -115,6 +115,9 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => ({
115115 scrollView : {
116116 paddingHorizontal : 20 ,
117117 } ,
118+ markdownContainer : {
119+ width : '100%' ,
120+ } ,
118121} ) ) ;
119122
120123type Props = {
@@ -197,14 +200,16 @@ export default function PlaybookRun({
197200 size = 'm'
198201 />
199202 ) }
200- < Markdown
201- value = { playbookRun . summary }
202- theme = { theme }
203- location = { componentId }
204- baseTextStyle = { styles . infoText }
205- blockStyles = { getMarkdownBlockStyles ( theme ) }
206- textStyles = { getMarkdownTextStyles ( theme ) }
207- />
203+ < View style = { styles . markdownContainer } >
204+ < Markdown
205+ value = { playbookRun . summary }
206+ theme = { theme }
207+ location = { componentId }
208+ baseTextStyle = { styles . infoText }
209+ blockStyles = { getMarkdownBlockStyles ( theme ) }
210+ textStyles = { getMarkdownTextStyles ( theme ) }
211+ />
212+ </ View >
208213 </ View >
209214 { ( owner || participants . length > 0 ) && (
210215 < View
You can’t perform that action at this time.
0 commit comments