Skip to content

Commit ae409d1

Browse files
authored
Fix tables on playbook runs (#8997)
1 parent 2455ecf commit ae409d1

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

app/products/playbooks/screens/playbook_run/playbook_run.tsx

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => ({
115115
scrollView: {
116116
paddingHorizontal: 20,
117117
},
118+
markdownContainer: {
119+
width: '100%',
120+
},
118121
}));
119122

120123
type 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

0 commit comments

Comments
 (0)