Skip to content

Commit 5ea6a4c

Browse files
authored
Merge pull request #12 from gitpod-io/hw/cl
Fix related image path not shown in changelog
2 parents 37ad4da + de13747 commit 5ea6a4c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/releaseNotes.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ class ReleaseNotesPanel {
117117
return [
118118
`# ${info.title}`,
119119
`> Published on ${releaseDate}, see also https://www.gitpod.io/changelog`,
120-
`![${info.alt ?? 'image'}](https://www.gitpod.io/images/changelog/${info.image})`,
120+
`![${info.alt ?? 'image'}](/images/changelog/${info.image})`,
121121
content,
122122
].join('\n\n');
123123
}
@@ -131,6 +131,7 @@ class ReleaseNotesPanel {
131131
this.panel.webview.html = `<!DOCTYPE html>
132132
<html lang="en">
133133
<head>
134+
<base href="https://www.gitpod.io/">
134135
<meta charset="UTF-8">
135136
<meta name="viewport" content="width=device-width, initial-scale=1.0">
136137
<title>Gitpod Release Notes</title>

0 commit comments

Comments
 (0)