Skip to content

Commit

Permalink
chore(ui5-timeline): address typo in sample (#10688)
Browse files Browse the repository at this point in the history
Fixed typo in the sample of `ui5-timeline`.
  • Loading branch information
hinzzx authored Jan 28, 2025
1 parent 49321f6 commit 468c7d2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ const itemToLoad = 5;
const growingTimeline = document.querySelector("#growingTimeline");
const timelineItemTemplate = (index) => {
var timelineItem = document.createElement("ui5-timeline-item");
timelineItem.titleText = "title text";
timelineItem.subtitleText = "the subtitle tex goes here " + index;
timelineItem.titleText = "Title text";
timelineItem.subtitleText = "The subtitle text goes here " + index;
timelineItem.icon = "calendar";
return timelineItem;
}
Expand Down

0 comments on commit 468c7d2

Please sign in to comment.