We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 931a83d commit 5572910Copy full SHA for 5572910
1 file changed
src/parquetDocument.ts
@@ -224,8 +224,9 @@ export class ParquetDocumentProvider implements vscode.CustomReadonlyEditorProvi
224
* Get the static HTML used for in our editor's webviews.
225
*/
226
private getHtmlForWebview(webview: vscode.Webview, uri: vscode.Uri): string {
227
- // Local path to script and css for the webview
+ // Local path to script and css for the webview.
228
const jsUri = webview.asWebviewUri(vscode.Uri.joinPath(
229
+ // Compiled from `src/webview/webview.ts`.
230
this._context.extensionUri, 'out', 'webview.js'));
231
232
const cssUri = webview.asWebviewUri(vscode.Uri.joinPath(
0 commit comments