Tag helpers : Fixed invalid id bug

pull/699/head
Yunus Emre Kalkan 6 years ago
parent e17583e85d
commit e81ba74c4e

@ -127,7 +127,7 @@ namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Carousel
{
if (string.IsNullOrWhiteSpace(TagHelper.Id))
{
TagHelper.Id = Guid.NewGuid().ToString("N");
TagHelper.Id = "C" + Guid.NewGuid().ToString("N");
}
}

@ -59,7 +59,7 @@ namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Collapse
{
if (string.IsNullOrWhiteSpace(TagHelper.Id))
{
TagHelper.Id = Guid.NewGuid().ToString("N");
TagHelper.Id = "A" + Guid.NewGuid().ToString("N");
}
}
}

@ -55,7 +55,7 @@ namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Collapse
{
if (string.IsNullOrWhiteSpace(TagHelper.Id))
{
TagHelper.Id = Guid.NewGuid().ToString("N");
TagHelper.Id = "A" + Guid.NewGuid().ToString("N");
}
}
}

@ -28,7 +28,7 @@ namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Nav
{
if (string.IsNullOrWhiteSpace(TagHelper.Id))
{
TagHelper.Id = Guid.NewGuid().ToString("N");
TagHelper.Id = "N" + Guid.NewGuid().ToString("N");
}
}
}

Loading…
Cancel
Save