Skip to content

Commit

Permalink
Merge pull request #160 from HPI-Information-Systems/bugfix/fix-navig…
Browse files Browse the repository at this point in the history
…ation-error

Fix crash on experiment investigation (v2.0.2)
  • Loading branch information
phpfs committed Apr 9, 2021
2 parents 7ae4910 + 7099caf commit 7a4e5c5
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 9 deletions.
4 changes: 2 additions & 2 deletions app/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 app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "snowman-app",
"author": "Snowman Team",
"description": "Compare data matching algorithms with each other",
"version": "2.0.1",
"version": "2.0.2",
"license": "MIT",
"homepage": "./",
"scripts": {
Expand Down
2 changes: 2 additions & 0 deletions app/src/store/reducers/BinaryMetricsReducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
CoreStoreActionTypes,
DatasetsPageActionTypes,
ExperimentsPageActionTypes,
NMetricsPageActionTypes,
} from 'store/actions/actionTypes';
import { SnowmanAction } from 'store/messages';
import { BinaryMetricsStore } from 'store/models';
Expand All @@ -23,6 +24,7 @@ export const BinaryMetricsReducer = (
case CoreStoreActionTypes.SET_ALL_EXPERIMENTS:
case ExperimentsPageActionTypes.DRAG_N_DROP_EXPERIMENT:
case DatasetsPageActionTypes.CLICK_ON_DATASET:
case NMetricsPageActionTypes.INSPECT_AN_EXPERIMENT:
case actionTypes.RESET_METRICS:
return {
...state,
Expand Down
2 changes: 2 additions & 0 deletions app/src/store/reducers/IntersectionReducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import {
DatasetsPageActionTypes,
ExperimentsPageActionTypes,
IntersectionStoreActionTypes as actionTypes,
NMetricsPageActionTypes,
} from 'store/actions/actionTypes';
import { SnowmanAction } from 'store/messages';
import { BenchmarkConfigurationStore, IntersectionStore } from 'store/models';
Expand Down Expand Up @@ -112,6 +113,7 @@ export const IntersectionReducer = (
case CoreStoreActionTypes.SET_ALL_EXPERIMENTS:
case ExperimentsPageActionTypes.DRAG_N_DROP_EXPERIMENT:
case DatasetsPageActionTypes.CLICK_ON_DATASET:
case NMetricsPageActionTypes.INSPECT_AN_EXPERIMENT:
case actionTypes.RESET_INTERSECTION:
return {
...initialState,
Expand Down
2 changes: 2 additions & 0 deletions app/src/store/reducers/NMetricsReducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
DatasetsPageActionTypes,
ExperimentsPageActionTypes,
NMetricsPageActionTypes as actionTypes,
NMetricsPageActionTypes,
} from 'store/actions/actionTypes';
import { SnowmanAction } from 'store/messages';
import { NMetricsStore } from 'store/models';
Expand All @@ -25,6 +26,7 @@ export const NMetricsReducer = (
case CoreStoreActionTypes.SET_ALL_EXPERIMENTS:
case ExperimentsPageActionTypes.DRAG_N_DROP_EXPERIMENT:
case DatasetsPageActionTypes.CLICK_ON_DATASET:
case NMetricsPageActionTypes.INSPECT_AN_EXPERIMENT:
case actionTypes.RESET_METRICS:
return {
...state,
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
Expand Up @@ -2,7 +2,7 @@
"name": "snowman",
"author": "Snowman Team",
"description": "Compare data matching algorithms with each other",
"version": "2.0.1",
"version": "2.0.2",
"license": "MIT",
"repository": "https://github.com/HPI-Information-Systems/snowman",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions wrapper/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 wrapper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "snowman-wrapper",
"author": "Snowman Team",
"description": "Compare data matching algorithms with each other",
"version": "2.0.1",
"version": "2.0.2",
"license": "MIT",
"main": "dist/main.js",
"scripts": {
Expand Down

0 comments on commit 7a4e5c5

Please sign in to comment.