Skip to content

Commit

Permalink
Merge pull request #378 from geovistory/377-bug-displaying-expression…
Browse files Browse the repository at this point in the history
…s-source-content-in-the-container-tab

Excludes classes 218 and 503 for the Container tab
tested locally, it works.
  • Loading branch information
dferhod authored Sep 27, 2024
2 parents 2be5a52 + e203fae commit 785ba6b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export class SourcesTabsComponent implements OnDestroy {
listService.pkAllowedClasses$ = combineLatest([sourceClasses$, this.selectedType$])
.pipe(map(([sourceClasses, option]) => {
if (option === 'content') return contentClasses;
if (option === 'container') return sourceClasses.filter(c => !contentClasses.includes(c));
return sourceClasses;
}))
}
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "geovistory-root",
"description": "root package.json of the monorepo",
"version": "0.8.1",
"version": "0.8.2-pr-378.0",
"scripts": {},
"private": true
}

0 comments on commit 785ba6b

Please sign in to comment.