From 059abe480705203c33517db710274e072a4b197b Mon Sep 17 00:00:00 2001 From: Andrew P Maney Date: Fri, 28 Feb 2020 14:47:24 -0800 Subject: [PATCH] Tasks: change clicking on task to go directly to edit page --- src/Pim/PimMain.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Pim/PimMain.tsx b/src/Pim/PimMain.tsx index fbf406e..67b92c8 100644 --- a/src/Pim/PimMain.tsx +++ b/src/Pim/PimMain.tsx @@ -64,7 +64,7 @@ class PimMain extends React.PureComponent { const itemUid = `${(event as any).journalUid}|${event.uid}`; this.props.history!.push( - routeResolver.getRoute('pim.tasks._id', { itemUid })); + routeResolver.getRoute('pim.tasks._id.edit', { itemUid })); } public contactClicked(contact: ContactType) {