diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/app/app.component.html b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/app/app.component.html index 5cb15c2c68bb..c473935e309f 100644 --- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/app/app.component.html +++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Angular/app/app.component.html @@ -21,7 +21,7 @@ *ngIf="getMovieById | apply : model.appointmentData.movieId as movie" >
- + {{ movie.text }} poster
{{ movie.text }}
diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/React/AppointmentTemplate.tsx b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/React/AppointmentTemplate.tsx index 4e7a15043a04..1c3219fc79f8 100644 --- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/React/AppointmentTemplate.tsx +++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/React/AppointmentTemplate.tsx @@ -16,7 +16,7 @@ const AppointmentTemplate = (props: AppointmentTemplateProps) => { return (
- + {movieInfo.text
{movieInfo.text}
); diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/ReactJs/AppointmentTemplate.js b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/ReactJs/AppointmentTemplate.js index 08e9d1da9285..ab182e7d5934 100644 --- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/ReactJs/AppointmentTemplate.js +++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/ReactJs/AppointmentTemplate.js @@ -8,7 +8,10 @@ const AppointmentTemplate = (props) => { const movieInfo = getMovieById(appointmentData.movieId) || {}; return (
- + {`${movieInfo.text}
{movieInfo.text}
); diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Vue/AppointmentTemplate.vue b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Vue/AppointmentTemplate.vue index ca092352ffe5..738591a55dde 100644 --- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Vue/AppointmentTemplate.vue +++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/Vue/AppointmentTemplate.vue @@ -1,6 +1,6 @@ diff --git a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/jQuery/index.js b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/jQuery/index.js index 124a91198a3e..2da86c5565f3 100644 --- a/apps/demos/Demos/Scheduler/CurrentTimeIndicator/jQuery/index.js +++ b/apps/demos/Demos/Scheduler/CurrentTimeIndicator/jQuery/index.js @@ -18,7 +18,7 @@ $(() => { const movieInfo = getMovieById(model.appointmentData.movieId) || {}; return $(`${"
" - + "` + + "${movieInfo.text} poster` + `
${movieInfo.text}
` + '
'); }, diff --git a/apps/demos/Demos/Scheduler/Overview/Angular/app/app.component.html b/apps/demos/Demos/Scheduler/Overview/Angular/app/app.component.html index eeb8f61b2968..7e3bb9b44064 100644 --- a/apps/demos/Demos/Scheduler/Overview/Angular/app/app.component.html +++ b/apps/demos/Demos/Scheduler/Overview/Angular/app/app.component.html @@ -26,7 +26,7 @@

{{ employee.text }}

- + {{ employee.text }} photo
Age: {{ employee.data.age }} diff --git a/apps/demos/Demos/Scheduler/Overview/React/ResourceCell.tsx b/apps/demos/Demos/Scheduler/Overview/React/ResourceCell.tsx index cf34a7d921c8..2ea79a94aa97 100644 --- a/apps/demos/Demos/Scheduler/Overview/React/ResourceCell.tsx +++ b/apps/demos/Demos/Scheduler/Overview/React/ResourceCell.tsx @@ -13,7 +13,10 @@ const ResourceCell = (props: ResourceCellProps) => {

{text}

- + {`${text}
Age: {age} diff --git a/apps/demos/Demos/Scheduler/Overview/ReactJs/ResourceCell.js b/apps/demos/Demos/Scheduler/Overview/ReactJs/ResourceCell.js index a1dc550e09f8..61681cc2fceb 100644 --- a/apps/demos/Demos/Scheduler/Overview/ReactJs/ResourceCell.js +++ b/apps/demos/Demos/Scheduler/Overview/ReactJs/ResourceCell.js @@ -17,7 +17,10 @@ const ResourceCell = (props) => {

{text}

- + {`${text}
{{ employee.text }}
- +
{ const avatar = $('
') .addClass('avatar') - .html(``) + .html(`${cellData.text} photo`) .attr('title', cellData.text); const info = $('
')