diff --git a/MVCDemos/Views/TagBox/Overview.cshtml b/MVCDemos/Views/TagBox/Overview.cshtml index 4225d2c941e..d50c922264a 100644 --- a/MVCDemos/Views/TagBox/Overview.cshtml +++ b/MVCDemos/Views/TagBox/Overview.cshtml @@ -106,7 +106,7 @@ .InputAttr("aria-label", "Product") .ItemTemplate(@
- + <%- Name %>. Picture
<%- Name %>
) @@ -140,7 +140,7 @@ const popover = $('#popover').dxPopover('instance') const tagImg = $('', { class: 'tag-img' }).attr({ src: data.ImageSrc, - alt: data.Name + alt: `${data.Name}. Picture` }) const tag = $('
') .attr('aria-disabled', isDisabled) diff --git a/NetCoreDemos/Views/TagBox/Overview.cshtml b/NetCoreDemos/Views/TagBox/Overview.cshtml index 81a294eaddf..3cf8befbebd 100644 --- a/NetCoreDemos/Views/TagBox/Overview.cshtml +++ b/NetCoreDemos/Views/TagBox/Overview.cshtml @@ -106,7 +106,7 @@ .ValueExpr("ID") .ItemTemplate(@
- + <%- Name %>. Picture
<%- Name %>
) @@ -139,7 +139,7 @@ const popover = $('#popover').dxPopover('instance') const tagImg = $('', { class: 'tag-img' }).attr({ src: data.ImageSrc, - alt: data.Name + alt: `${data.Name}. Picture` }) const tag = $('
') .attr('aria-disabled', isDisabled)