Skip to content
Snippets Groups Projects
Commit 0e041f7c authored by Atte Keinänen's avatar Atte Keinänen
Browse files

Remove empty xray route paths, show 'No value' if no feature value available

parent d5e5ebe5
No related branches found
No related tags found
No related merge requests found
......@@ -258,14 +258,8 @@ export const getRoutes = (store) =>
<Route path="table/:tableId/:cost" component={TableXRay} />
<Route path="field/:fieldId/:cost" component={FieldXRay} />
<Route path="card/:cardId/:cost" component={CardXRay} />
<Route path="compare" title="Compare">
<Route path="segments/:segmentId1/:segmentId2">
<Route path=":cost" component={SegmentComparison} />
</Route>
<Route path="segment/:segmentId/table/:tableId">
<Route path=":cost" component={SegmentTableComparison} />
</Route>
</Route>
<Route path="compare/segments/:segmentId1/:segmentId2/:cost" component={SegmentComparison} />
<Route path="compare/segment/:segmentId/table/:tableId/:cost" component={SegmentTableComparison} />
</Route>
{/* PULSE */}
......
......@@ -14,7 +14,7 @@ const SimpleStat = ({ stat, showDescription }) =>
</div>
{ /* call toString to ensure that values like true / false show up */ }
<h1 className="my1">
{stat.value.toString()}
{stat.value ? stat.value.toString() : "No value"}
</h1>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment