Merge remote-tracking branch 'origin' into org-access-list

This commit is contained in:
Kia Lam
2019-03-01 10:37:44 -05:00
10 changed files with 610 additions and 78 deletions

View File

@@ -120,14 +120,18 @@ class Organization extends Component {
to="/organizations/:id/details"
exact
/>
<Route
path="/organizations/:id/edit"
render={() => (
<OrganizationEdit
match={match}
/>
)}
/>
{organization && (
<Route
path="/organizations/:id/edit"
render={() => (
<OrganizationEdit
api={api}
match={match}
organization={organization}
/>
)}
/>
)}
{organization && (
<Route
path="/organizations/:id/details"