Browse Source

Fixed tab tag helper invalid id bug

pull/699/head
Yunus Emre Kalkan 8 years ago
parent
commit
e17583e85d
  1. 2
      framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Tab/AbpTabsTagHelperService.cs

2
framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Tab/AbpTabsTagHelperService.cs

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

Loading…
Cancel
Save