- Progress Commit

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2024-04-02 15:01:51 -04:00
parent 282dbd0913
commit 90814f41a2
11 changed files with 116 additions and 39 deletions

View File

@@ -32,7 +32,7 @@ export function MyTasksPageContainer({bodyshop, currentUser, setBreadcrumbs, se
setSelectedHeader("all_tasks");
setBreadcrumbs([
{
link: "/manage/alltasks",
link: "/manage/tasks/alltasks",
label: t("titles.bc.all_tasks"),
},]);
}, [t, setBreadcrumbs, setSelectedHeader]);

View File

@@ -32,7 +32,7 @@ export function MyTasksPageContainer({bodyshop, currentUser, setBreadcrumbs, se
setSelectedHeader("my_tasks");
setBreadcrumbs([
{
link: "/manage/mytasks",
link: "/manage/tasks/mytasks",
label: t("titles.bc.my_tasks"),
},]);
}, [t, setBreadcrumbs, setSelectedHeader]);

View File

@@ -12,7 +12,7 @@ export default function TasksPageComponent({bodyshop, currentUser, type}) {
currentUser={currentUser}/>
case taskPageTypes.ALL_TASKS:
return <TaskListContainer query={QUERY_ALL_TASKS_PAGINATED} bodyshop={bodyshop}
titleTranslation={'tasks.titles.my_tasks'}
titleTranslation={'tasks.titles.all_tasks'}
currentUser={currentUser}/>
}