Skip to content

Commit

Permalink
remove exec collection on dataspace (#2272)
Browse files Browse the repository at this point in the history
* remove exec collection on dataspace

* fix rename rendering
  • Loading branch information
MauricioUyaguari authored May 26, 2023
1 parent 666276d commit 6e7cb85
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .changeset/large-pears-sniff.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
'@finos/legend-extension-dsl-data-space': patch
---
4 changes: 4 additions & 0 deletions .changeset/tall-falcons-agree.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
'@finos/legend-extension-dsl-data-space': patch
'@finos/legend-application-query': patch
---
Original file line number Diff line number Diff line change
Expand Up @@ -828,9 +828,10 @@ export class ExistingQueryEditorStore extends QueryEditorStore {
) {
super(applicationStore, depotServerClient);

makeObservable<ExistingQueryEditorStore>(this, {
makeObservable<ExistingQueryEditorStore, '_lightQuery'>(this, {
query: observable,
updateState: observable,
_lightQuery: observable,
lightQuery: computed,
setLightQuery: action,
setQuery: action,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -488,9 +488,11 @@ export class DSL_DataSpace_PureProtocolProcessorPlugin
graph: PureModel,
protocolGraph: V1_PureModelContextData,
): V1_PackageableElement[] =>
protocolGraph.elements.filter(
(element) => element instanceof V1_DataSpace,
),
// TODO: bring back when issue with not including services as part of the execution collections is resolved
// protocolGraph.elements.filter(
// (element) => element instanceof V1_DataSpace,
// ),
[],
];
}
}
Expand Down

0 comments on commit 6e7cb85

Please sign in to comment.