Skip to content

Commit 7120fad

Browse files
authored
Fix LT-22133: Display Label should apply to Inflection Features (#333)
1 parent 76fad9c commit 7120fad

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/SIL.LCModel/DomainImpl/OverridesCellar.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4013,12 +4013,13 @@ private string FeatureSpecKey(IFsFeatureSpecification spec)
40134013
}
40144014

40154015
/// <summary>
4016-
/// Provide a "Name" for this (is a long name)
4016+
/// Provide a "Name" for this.
4017+
/// Use short name to satisfy LT-22133.
40174018
/// </summary>
40184019
/// <returns></returns>
40194020
public override string ToString()
40204021
{
4021-
return LongNameSorted;
4022+
return ShortName;
40224023
}
40234024

40244025
/// <summary>

0 commit comments

Comments
 (0)