diff --git a/src/Journals/journalView.tsx b/src/Journals/journalView.tsx
index 9ef8891..1c69819 100644
--- a/src/Journals/journalView.tsx
+++ b/src/Journals/journalView.tsx
@@ -31,7 +31,7 @@ export function journalView(JournalList: any, JournalItem: any) {
const uid = contact.uid;
this.props.history!.push(
- routeResolver.getRoute('journals._id.items._id', { journalUid: this.props.journal.uid, itemUid: uid }));
+ routeResolver.getRoute('journals._id.items._id', { journalUid: this.props.journal.uid, itemUid: encodeURIComponent(uid) }));
}
public render() {
@@ -53,7 +53,7 @@ export function journalView(JournalList: any, JournalItem: any) {
render={({ match }) => {
return (
-
+
);
}}
/>
diff --git a/src/Pim/PimMain.tsx b/src/Pim/PimMain.tsx
index 6067001..eb70ac9 100644
--- a/src/Pim/PimMain.tsx
+++ b/src/Pim/PimMain.tsx
@@ -65,7 +65,7 @@ class PimMain extends React.PureComponent {
public eventClicked(event: ICAL.Event) {
// FIXME:Hack
- const itemUid = `${(event as any).journalUid}|${event.uid}`;
+ const itemUid = `${(event as any).journalUid}|${encodeURIComponent(event.uid)}`;
this.props.history!.push(
routeResolver.getRoute('pim.events._id', { itemUid }));
@@ -73,7 +73,7 @@ class PimMain extends React.PureComponent {
public taskClicked(event: ICAL.Event) {
// FIXME:Hack
- const itemUid = `${(event as any).journalUid}|${event.uid}`;
+ const itemUid = `${(event as any).journalUid}|${encodeURIComponent(event.uid)}`;
this.props.history!.push(
routeResolver.getRoute('pim.tasks._id.edit', { itemUid }));
@@ -81,7 +81,7 @@ class PimMain extends React.PureComponent {
public contactClicked(contact: ContactType) {
// FIXME:Hack
- const itemUid = `${(contact as any).journalUid}|${contact.uid}`;
+ const itemUid = `${(contact as any).journalUid}|${encodeURIComponent(contact.uid)}`;
this.props.history!.push(
routeResolver.getRoute('pim.contacts._id', { itemUid }));
diff --git a/src/Pim/index.tsx b/src/Pim/index.tsx
index f37e28f..1a20130 100644
--- a/src/Pim/index.tsx
+++ b/src/Pim/index.tsx
@@ -153,21 +153,24 @@ const CollectionRoutes = withStyles(styles)(withRouter(
(
-
- {(match.params.itemUid in props.items) &&
-
- }
-
- )}
+ render={({ match }) => {
+ const itemUid = decodeURIComponent(match.params.itemUid);
+ return (
+
+ {(itemUid in props.items) &&
+
+ }
+
+ );
+ }}
/>
)}
@@ -216,7 +219,7 @@ const CollectionRoutes = withStyles(styles)(withRouter(
Edit
-
+
)}
/>