Skip to content

Commit

Permalink
update:kanban breadcrumb links
Browse files Browse the repository at this point in the history
  • Loading branch information
maceteligolden committed Dec 26, 2023
1 parent 0c71d78 commit 81010c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/web/app/[locale]/kanban/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,11 @@ const Kanban = () => {
const { data } = useKanban();
const { activeTeam } = useOrganizationTeams();
const t = useTranslations();


const [activeTab, setActiveTab] = useState(KanbanTabs.TODAY);

const breadcrumbPath = [{title: JSON.parse(t('pages.home.BREADCRUMB')), href: '/'}, activeTeam?.name || '', 'Kanban Board'];
const breadcrumbPath = [{title: JSON.parse(t('pages.home.BREADCRUMB')), href: '/'}, {title: activeTeam?.name || '', href:'/'}, {title:'Kanban Board', href: '/kanban'}];

const imageRadius = 20;
const numberOfImagesDisplayed = 4;
Expand Down

0 comments on commit 81010c9

Please sign in to comment.