diff --git a/vscode-extension/src/Services/WebPanelCommandService.ts b/vscode-extension/src/Services/WebPanelCommandService.ts index 3b7cadc..75235ff 100644 --- a/vscode-extension/src/Services/WebPanelCommandService.ts +++ b/vscode-extension/src/Services/WebPanelCommandService.ts @@ -179,17 +179,17 @@ export class WebPanelCommandService { await this.excelService.export(entries); WebPanel.postMessage(null); } - + async GetConfigurationCommand(message: IMessageBase) { // TODO - let setting = false; - WebPanel.postMessage({ Command: 'GetConfiguration', setting}); + let setting = false; + WebPanel.postMessage({ Command: 'GetConfiguration', setting }); } async SetConfigurationCommand(message: IMessageBase) { // TODO //let setting = message.Data as boolean; // - WebPanel.postMessage({Command: 'SetConfiguration', Data: null}); + WebPanel.postMessage({ Command: 'SetConfiguration', Data: null }); } } \ No newline at end of file