Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yacchin1205 committed Apr 10, 2024
1 parent f654a28 commit 42c5034
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/widgets/open.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ abstract class BaseOpener implements IContentOpener {
panel.addWidget(svgRenderer);
}
if (markdownPath) {
const markdownModel = await this.documents.services.contents.get(markdownPath);
const markdownModel =
await this.documents.services.contents.get(markdownPath);
const markdownMimeType = 'text/markdown';
const markdownRenderer =
this.renderMimeRegistry.createRenderer(markdownMimeType);
Expand Down

0 comments on commit 42c5034

Please sign in to comment.