Skip to content

Commit

Permalink
🚑️ CrumbPath /eventsの修正
Browse files Browse the repository at this point in the history
  • Loading branch information
Shion1305 committed Nov 4, 2023
1 parent 314bdaa commit 7a91072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/BreadCrumbsList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const resolveEvent = (p: Array<string>): Array<CrumbInfo> => {
const event = events.find((e) => e.id === Number(id)) as EventSummary;
console.log("found", event);
return [
{ name: "イベント", crumbPath: "/event" },
{ name: "イベント", crumbPath: "/events" },
{ name: `${event?.e_name}`, crumbPath: `/event/${id}` },
];
};
Expand Down

0 comments on commit 7a91072

Please sign in to comment.