diff --git a/CHANGELOG.md b/CHANGELOG.md index 4371d020..1828169a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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://github.com/fishtown-analytics/dbt-docs/issues/93)) + +Contributors: +- [@jplynch77](https://github.com/jplynch77) ([docs#139](https://github.com/fishtown-analytics/dbt-docs/pull/139)) ## dbt 0.18.1 (Unreleased) - Add Exposure nodes ([docs#135](https://github.com/fishtown-analytics/dbt-docs/issues/135), [docs#136](https://github.com/fishtown-analytics/dbt-docs/pull/136), [docs#137](https://github.com/fishtown-analytics/dbt-docs/pull/137)) diff --git a/src/app/main/index.js b/src/app/main/index.js index 3d482a09..fb72d0aa 100644 --- a/src/app/main/index.js +++ b/src/app/main/index.js @@ -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); };