Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/hungry-items-say.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@o2s/integrations.strapi-cms': major
'@o2s/docs': patch
---

Mapper labels fixes
2 changes: 1 addition & 1 deletion apps/docs/docs/overview/data-flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ When a request from the frontend app (no matter whether for a page or a componen
},
labels: {
today: configurableTexts.dates.today,
yesterday: configurableTexts.dates.today,
yesterday: configurableTexts.dates.yesterday,
},
detailsUrl: component.detailsURL,
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const mapNotificationListBlock = (
},
labels: {
today: configurableTexts.dates.today,
yesterday: configurableTexts.dates.today,
yesterday: configurableTexts.dates.yesterday,
},
detailsUrl: component.detailsURL as string,
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const mapTicketListBlock = (data: GetComponentQuery): CMS.Model.TicketLis
},
labels: {
today: configurableTexts.dates.today,
yesterday: configurableTexts.dates.today,
yesterday: configurableTexts.dates.yesterday,
},
detailsUrl: component.detailsURL as string,
};
Expand Down