Skip to content

Commit

Permalink
format file
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidFeldhoff committed Apr 3, 2021
1 parent b1c12aa commit 75d9b9f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vscode-extension/src/Services/WebPanelCommandService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
}
}

0 comments on commit 75d9b9f

Please sign in to comment.