Fixed tab tag helper invalid id bug

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

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

Loading…
Cancel
Save