Skip to content

Commit 122a006

Browse files
authored
feat(QueryEditor): execute query with selected text (#737)
1 parent 4881f09 commit 122a006

File tree

7 files changed

+308
-314
lines changed

7 files changed

+308
-314
lines changed

src/containers/Tenant/ObjectGeneral/ObjectGeneral.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import './ObjectGeneral.scss';
1818
const b = cn('object-general');
1919

2020
interface ObjectGeneralProps {
21-
type?: EPathType;
21+
type: EPathType;
2222
additionalTenantProps?: AdditionalTenantsProps;
2323
additionalNodesProps?: AdditionalNodesProps;
2424
}

src/containers/Tenant/Query/Query.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ const b = block('ydb-query');
2121

2222
interface QueryProps {
2323
theme: string;
24-
path?: string;
25-
type?: EPathType;
24+
path: string;
25+
type: EPathType;
2626
}
2727

2828
export const Query = (props: QueryProps) => {

0 commit comments

Comments
 (0)