This commit is contained in:
Jackson Kearl 2021-04-26 14:48:50 -07:00
parent 82520584ef
commit 5d4454709a
No known key found for this signature in database
GPG key ID: DA09A59C409FC400

View file

@ -442,7 +442,7 @@ export class GettingStartedPage extends EditorPane {
private updateMediaSourceForColorMode(element: HTMLImageElement, sources: { hc: URI, dark: URI, light: URI }) {
const themeType = this.themeService.getColorTheme().type;
element.srcset = sources[themeType].toString(true) + ' 1.5x';
element.srcset = sources[themeType].toString() + ' 1.5x';
}
private async renderMarkdown(path: URI, base: URI): Promise<string> {