Skip to content

Commit f188f8d

Browse files
committed
Re-run linter
1 parent fca90fe commit f188f8d

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

src/commands/documaticPreviewPanel.ts

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,16 @@ export class DocumaticPreviewPanel {
7373
const webviewFolderUri: vscode.Uri = vscode.Uri.joinPath(extensionUri, "webview");
7474

7575
// Create the documatic preview webview
76-
const panel = vscode.window.createWebviewPanel(this.viewType, `Preview ${clsname}.cls`, {preserveFocus: true, viewColumn: vscode.ViewColumn.Beside}, {
77-
enableScripts: true,
78-
enableCommandUris: true,
79-
localResourceRoots: [webviewFolderUri],
80-
});
76+
const panel = vscode.window.createWebviewPanel(
77+
this.viewType,
78+
`Preview ${clsname}.cls`,
79+
{ preserveFocus: true, viewColumn: vscode.ViewColumn.Beside },
80+
{
81+
enableScripts: true,
82+
enableCommandUris: true,
83+
localResourceRoots: [webviewFolderUri],
84+
}
85+
);
8186

8287
this.currentPanel = new DocumaticPreviewPanel(panel, webviewFolderUri, openEditor);
8388
}

0 commit comments

Comments
 (0)