We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a0ad4b6 + 3d77841 commit a09aeaaCopy full SHA for a09aeaa
1 file changed
packages/core/src/publisher/github-comment.ts
@@ -115,9 +115,11 @@ function buildCommentBody(options: CommentOptions): string {
115
: '';
116
117
const mediaSection = recordingUrl
118
- ? ``
+ ? `\n\n[📱 Can't see the preview? Open it directly](${recordingUrl})`
119
: screenshots && screenshots.length > 0
120
- ? screenshots.map((s, i) => ``).join('\n')
+ ? screenshots
121
+ .map((s, i) => `\n\n[📱 Can't see screenshot ${i + 1}? Open it directly](${s})`)
122
+ .join('\n\n')
123
: '_No recording available._';
124
125
const rerunSection = rerunUrl ? `\n\n[↺ Re-run demo](${rerunUrl})` : '';
0 commit comments