Skip to content
This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Commit e33e449

Browse files
committed
Tweak of previous commit
1 parent ffd0e6a commit e33e449

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/Coderr.Client.NetStd/Coderr.Client.NetStd.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Coderr.Client.NetStd.xml</DocumentationFile>
77
<RootNamespace>Coderr.Client</RootNamespace>
88

9-
<PackageReleaseNotes>Added helpers for customizing the UI through the client libraries.</PackageReleaseNotes>
10-
<Version>1.2.2</Version>
9+
<PackageReleaseNotes>Tweak of previous commit.</PackageReleaseNotes>
10+
<Version>1.2.3</Version>
1111
</PropertyGroup>
1212

1313
<PropertyGroup>

src/Coderr.Client.NetStd/ContextCollections/CoderrContextCollectionExtensions.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public static void AddHighlightedProperty(this IList<ContextCollectionDTO> colle
7777
}
7878

7979
if (!values.Contains(value))
80-
coderrCollection.Properties[CoderrCollectionProperties.HighlightProperties] = $"{values},{values}";
80+
coderrCollection.Properties[CoderrCollectionProperties.HighlightProperties] = $"{values},{value}";
8181
}
8282

8383

@@ -86,14 +86,14 @@ public static void AddHighlightedCollection(this IList<ContextCollectionDTO> col
8686
var coderrCollection = GetCoderrCollection(collections);
8787

8888
var value = contextCollectionName;
89-
if (!coderrCollection.Properties.TryGetValue(CoderrCollectionProperties.HighlightProperties, out var values))
89+
if (!coderrCollection.Properties.TryGetValue(CoderrCollectionProperties.HighlightCollection, out var values))
9090
{
91-
coderrCollection.Properties[CoderrCollectionProperties.HighlightProperties] = value;
91+
coderrCollection.Properties[CoderrCollectionProperties.HighlightCollection] = value;
9292
return;
9393
}
9494

9595
if (!values.Contains(value))
96-
coderrCollection.Properties[CoderrCollectionProperties.HighlightProperties] = $"{values},{values}";
96+
coderrCollection.Properties[CoderrCollectionProperties.HighlightCollection] = $"{values},{value}";
9797
}
9898

9999

0 commit comments

Comments
 (0)