Skip to content

Commit

Permalink
revert to previous
Browse files Browse the repository at this point in the history
  • Loading branch information
ecmel committed Dec 19, 2023
1 parent 9054a97 commit 16bd208
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/webview/components/kdbDataSourceView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,10 +215,9 @@ export class KdbDataSourceView extends LitElement {

private renderApiOptions(selected: string) {
if (this.isInsights && this.isMetaLoaded) {
/*
return this.insightsMeta.api
.filter(
(api) => api.api === ".kxi.getData" || !api.api.startsWith(".kxi.")
(api) => api.api === ".kxi.getData" //|| !api.api.startsWith(".kxi.")
)
.map((api) => {
const value =
Expand All @@ -231,12 +230,7 @@ export class KdbDataSourceView extends LitElement {
>${value}</vscode-option
>
`;
});
*/
this.selectedApi = "getData";
return html`
<vscode-option value="getData" selected>getData</vscode-option>
`;
});
}
return [];
}
Expand Down

0 comments on commit 16bd208

Please sign in to comment.