Skip to content

Commit

Permalink
Merge pull request #139 from jplynch77/fix/source-lineage
Browse files Browse the repository at this point in the history
Fix issue where sources nodes with tags were excluded from graph viz
  • Loading branch information
drewbanin authored Sep 28, 2020
2 parents bc31f75 + ce7877f commit 1caa287
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## dbt 0.19.0 (Release TBD)
- Fixed issue where sources with tags were not showing up in graph viz ([docs#93](https:/fishtown-analytics/dbt-docs/issues/93))

Contributors:
- [@jplynch77](https:/jplynch77) ([docs#139](https:/fishtown-analytics/dbt-docs/pull/139))

## dbt 0.18.1 (Unreleased)
- Add Exposure nodes ([docs#135](https:/fishtown-analytics/dbt-docs/issues/135), [docs#136](https:/fishtown-analytics/dbt-docs/pull/136), [docs#137](https:/fishtown-analytics/dbt-docs/pull/137))
Expand Down
2 changes: 1 addition & 1 deletion src/app/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ angular
var packages = _.unique(_.pluck(_.values(project.nodes), 'package_name'))
var all_tags = [null];
_.each(project.nodes, function(node) {
if (node.resource_type == 'model') {
if (node.resource_type != 'test') {
var tags = node.tags;
all_tags = _.union(all_tags, tags);
};
Expand Down

0 comments on commit 1caa287

Please sign in to comment.