Skip to content

Commit

Permalink
Merge pull request #25 from guillotinaweb/issue-ng91
Browse files Browse the repository at this point in the history
noImplicitReturns
  • Loading branch information
ebrehault authored Jun 8, 2020
2 parents 08e61a0 + ecfbf1e commit 881643d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.2.4 (2020-06-08)

- No implicit return

# 1.2.3 (2020-06-07)

- Fix context path matching on resource update
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-state-traverser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@guillotinaweb/ngx-state-traverser",
"version": "1.2.3",
"version": "1.2.4",
"license": "MIT",
"author": {
"name": "Eric Brehault",
Expand Down
1 change: 1 addition & 0 deletions projects/ngx-state-traverser/src/lib/selector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ export namespace TraverserSelectors {
map(context => {
if (context instanceof Missing) {
store.dispatch(new TraverserActions.Traverse(context.path));
return;
} else {
return (context as T);
}
Expand Down

0 comments on commit 881643d

Please sign in to comment.