From a9ed187213fe7a352930364dcb8ef98f9e9abbd4 Mon Sep 17 00:00:00 2001 From: Jordi Bunster Date: Tue, 30 Mar 2021 13:59:04 -0700 Subject: [PATCH] Bugfix: this was not really used at all (#596) --- src/Explorer/Tabs/MongoQueryTab.html | 120 --------------------------- src/Explorer/Tabs/MongoQueryTab.ts | 2 - 2 files changed, 122 deletions(-) delete mode 100644 src/Explorer/Tabs/MongoQueryTab.html diff --git a/src/Explorer/Tabs/MongoQueryTab.html b/src/Explorer/Tabs/MongoQueryTab.html deleted file mode 100644 index 4302c986f..000000000 --- a/src/Explorer/Tabs/MongoQueryTab.html +++ /dev/null @@ -1,120 +0,0 @@ -
- -
-
- - - Run - - - Run - - -
-
- - -
-
- Start by writing a Mongo query, for example: {'id':'foo'} or { } to get all the - documents. -
- -
- Errors -
- - - -
- -
-
- Results: - | Request Charge: - | - - - Next - - - - Next - -
-
-
- - - -
- -
- : -
- -
- -
- -
diff --git a/src/Explorer/Tabs/MongoQueryTab.ts b/src/Explorer/Tabs/MongoQueryTab.ts index fcf029759..53ba3271e 100644 --- a/src/Explorer/Tabs/MongoQueryTab.ts +++ b/src/Explorer/Tabs/MongoQueryTab.ts @@ -5,10 +5,8 @@ import QueryTab from "./QueryTab"; import * as HeadersUtility from "../../Common/HeadersUtility"; import { queryIterator } from "../../Common/MongoProxyClient"; import { MinimalQueryIterator } from "../../Common/IteratorUtilities"; -import template from "./MongoQueryTab.html"; export default class MongoQueryTab extends QueryTab { - public static readonly component = { name: "mongo-query-tab", template }; public collection: ViewModels.Collection; constructor(options: ViewModels.QueryTabOptions) {