Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
Datahub
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
32
Issues
32
List
Boards
Labels
Service Desk
Milestones
Jira
Jira
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ICAT
Datahub
Commits
81b51936
Commit
81b51936
authored
Sep 02, 2020
by
Axel Bocciarelli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove `exact` on investigation routes and use child syntax
parent
b58dcbd6
Pipeline
#32571
passed with stage
in 3 minutes and 46 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
21 deletions
+15
-21
src/App.js
src/App.js
+15
-21
No files found.
src/App.js
View file @
81b51936
...
...
@@ -138,7 +138,6 @@ function App() {
<
Route
path
=
"
/investigation
"
>
<
LoadingBoundary
message
=
"
Loading investigation...
"
spacedOut
>
<
Route
exact
path
=
"
/investigation/:investigationId/datasets
"
render
=
{({
match
})
=>
UI
.
investigationContainer
.
isDatasetListVisible
?
(
...
...
@@ -151,28 +150,23 @@ function App() {
}
/
>
<
Route
exact
path
=
"
/investigation/:investigationId/events/tagManager
"
component
=
{
EventTagPage
}
/
>
<
Route
exact
path
=
"
/investigation/:investigationId/events
"
component
=
{
EventsPage
}
/
>
<
Route
path
=
"
/investigation/:investigationId/events/tagManager
"
>
<
EventTagPage
/>
<
/Route
>
<
Route
path
=
"
/investigation/:investigationId/events
"
>
<
EventsPage
/>
<
/Route
>
{
isSampleTrackingEnabled
&&
(
<
Route
exact
path
=
"
/investigation/:investigationId/shipping
"
component
=
{
ShippingPage
}
/
>
<
Route
path
=
"
/investigation/:investigationId/shipping
"
>
<
ShippingPage
/>
<
/Route
>
)}
<
Route
exact
path
=
"
/investigation/:investigationId/parcel/:parcelId
"
component
=
{
ParcelPage
}
/
>
<
Route
path
=
"
/investigation/:investigationId/parcel/:parcelId
"
>
<
ParcelPage
/>
<
/Route
>
<
/LoadingBoundary
>
<
/Route
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment