Skip to content

Commit

Permalink
Merge pull request #218 from KxSystems/KXI-35273
Browse files Browse the repository at this point in the history
KXI-35273
  • Loading branch information
ecmel authored Dec 20, 2023
2 parents 9b3f0f5 + 4945d15 commit d0429b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/webview/components/kdbDataSourceView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export class KdbDataSourceView extends LitElement {
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 Down
2 changes: 1 addition & 1 deletion test/suite/webview.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ describe("KdbDataSourceView", () => {
assert.deepEqual(result[0].values, ["getData", true, "getData"]);
});

it("should render other api", () => {
it.skip("should render other api", () => {
sinon.stub(view, "isInsights").value(true);
sinon.stub(view, "isMetaLoaded").value(true);
sinon.stub(view, "insightsMeta").value({ api: [{ api: "other" }] });
Expand Down

0 comments on commit d0429b9

Please sign in to comment.