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
2 changes: 2 additions & 0 deletions packages/pluggableWidgets/calendar-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

- Fixed error when selecting a default view that was not enabled in the toolbar items configuration.

- Fixed title expression not rendering the correct value.

### Breaking changes

- Custom view buttons and their captions are now set inside the Custom top bar views configuration.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class CalendarPropsBuilder {
if (this.props.titleType === "attribute" && this.props.titleAttribute) {
return this.props.titleAttribute.get(item).value ?? "";
} else if (this.props.titleType === "expression" && this.props.titleExpression) {
return String(this.props.titleExpression.get(item) ?? "");
return this.props.titleExpression.get(item)?.value ?? "";
} else {
return "Untitled Event";
}
Expand Down
Loading