Skip to content

Commit

Permalink
Consider all collections when running transform scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
imolorhe committed Dec 6, 2023
1 parent 951a1b2 commit 0b68810
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/altair-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
"prebuild": "rimraf dist",
"start": "nest start",
"start:debug": "nest start --debug --watch",
"start:dev": "rm dist && nest start --watch",
"start:dev": "rimraf dist && nest start --watch",
"start:prod": "node dist/main",
"migrate:e2e": "dotenv -e .env.e2e -- prisma migrate deploy --schema ../altair-db/prisma/schema.prisma",
"test": "jest",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export class QueryService {

private async getWindowParentCollections(window: PerWindowState) {
if (window.layout.windowIdInCollection && window.layout.collectionId) {
const collection = await this.collectionService.getLocalCollectionByID(
const collection = await this.collectionService.getCollectionByID(
window.layout.collectionId
);

Expand Down

0 comments on commit 0b68810

Please sign in to comment.