Fix tables on playbook runs (#8997)
This commit is contained in:
parent
2455ecf39f
commit
ae409d185c
1 changed files with 13 additions and 8 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue