Angular 19 + Even more bugfixes (#3675)
This commit is contained in:
parent
535165c445
commit
cc3ae7f472
249 changed files with 4400 additions and 4315 deletions
|
|
@ -547,6 +547,12 @@ public partial class VersionUpdaterService : IVersionUpdaterService
|
|||
// Remove "Fixed:", "Added:" etc. if present
|
||||
var cleanedItem = CleanSectionItem(trimmedLine);
|
||||
|
||||
// Some sections like API/Developer/Removed don't have the title repeated, so we need to check for an additional cleaning
|
||||
if (cleanedItem.StartsWith("- "))
|
||||
{
|
||||
cleanedItem = trimmedLine.Substring(2);
|
||||
}
|
||||
|
||||
// Only add non-empty items
|
||||
if (!string.IsNullOrWhiteSpace(cleanedItem))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue