From 1a57aad78e87289ea6fe97744a325a33d313641e Mon Sep 17 00:00:00 2001 From: Andrey Sobolev <haiodo@users.noreply.github.com> Date: Mon, 20 Feb 2023 10:05:17 +0700 Subject: [PATCH] Remove obsolete queryview (#2659) Signed-off-by: Andrey Sobolev <haiodo@gmail.com> --- plugins/devmodel-resources/src/index.ts | 4 +--- plugins/devmodel/src/index.ts | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/plugins/devmodel-resources/src/index.ts b/plugins/devmodel-resources/src/index.ts index 76e55468bd..96ad228883 100644 --- a/plugins/devmodel-resources/src/index.ts +++ b/plugins/devmodel-resources/src/index.ts @@ -33,7 +33,6 @@ import { getMetadata, IntlString, Resources } from '@hcengineering/platform' import view from '@hcengineering/view' import workbench from '@hcengineering/workbench' import ModelView from './components/ModelView.svelte' -import QueryView from './components/QueryView.svelte' import devmodel from './plugin' export interface TxWitHResult { @@ -177,8 +176,7 @@ export function toIntl (value: string): IntlString { export default async (): Promise<Resources> => ({ component: { - ModelView, - QueryView + ModelView }, hook: { Hook diff --git a/plugins/devmodel/src/index.ts b/plugins/devmodel/src/index.ts index 4e6060b21d..6e658d1af7 100644 --- a/plugins/devmodel/src/index.ts +++ b/plugins/devmodel/src/index.ts @@ -29,7 +29,6 @@ export default plugin(devModelId, { }, component: { ModelView: '' as AnyComponent, - QueryView: '' as AnyComponent, TransactionView: '' as AnyComponent, NotificationsView: '' as AnyComponent },