Fix tables on playbook runs (#8997)

This commit is contained in:
Daniel Espino García 2025-07-18 11:14:23 +02:00 committed by GitHub
parent 2455ecf39f
commit ae409d185c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -115,6 +115,9 @@ const getStyleSheet = makeStyleSheetFromTheme((theme) => ({
scrollView: {
paddingHorizontal: 20,
},
markdownContainer: {
width: '100%',
},
}));
type Props = {
@ -197,14 +200,16 @@ export default function PlaybookRun({
size='m'
/>
)}
<Markdown
value={playbookRun.summary}
theme={theme}
location={componentId}
baseTextStyle={styles.infoText}
blockStyles={getMarkdownBlockStyles(theme)}
textStyles={getMarkdownTextStyles(theme)}
/>
<View style={styles.markdownContainer}>
<Markdown
value={playbookRun.summary}
theme={theme}
location={componentId}
baseTextStyle={styles.infoText}
blockStyles={getMarkdownBlockStyles(theme)}
textStyles={getMarkdownTextStyles(theme)}
/>
</View>
</View>
{(owner || participants.length > 0) && (
<View