This repository was archived by the owner on Oct 4, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 6
6
<DocumentationFile >bin\$(Configuration)\$(TargetFramework)\Coderr.Client.NetStd.xml</DocumentationFile >
7
7
<RootNamespace >Coderr.Client</RootNamespace >
8
8
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 >
11
11
</PropertyGroup >
12
12
13
13
<PropertyGroup >
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ public static void AddHighlightedProperty(this IList<ContextCollectionDTO> colle
77
77
}
78
78
79
79
if ( ! values . Contains ( value ) )
80
- coderrCollection . Properties [ CoderrCollectionProperties . HighlightProperties ] = $ "{ values } ,{ values } ";
80
+ coderrCollection . Properties [ CoderrCollectionProperties . HighlightProperties ] = $ "{ values } ,{ value } ";
81
81
}
82
82
83
83
@@ -86,14 +86,14 @@ public static void AddHighlightedCollection(this IList<ContextCollectionDTO> col
86
86
var coderrCollection = GetCoderrCollection ( collections ) ;
87
87
88
88
var value = contextCollectionName ;
89
- if ( ! coderrCollection . Properties . TryGetValue ( CoderrCollectionProperties . HighlightProperties , out var values ) )
89
+ if ( ! coderrCollection . Properties . TryGetValue ( CoderrCollectionProperties . HighlightCollection , out var values ) )
90
90
{
91
- coderrCollection . Properties [ CoderrCollectionProperties . HighlightProperties ] = value ;
91
+ coderrCollection . Properties [ CoderrCollectionProperties . HighlightCollection ] = value ;
92
92
return ;
93
93
}
94
94
95
95
if ( ! values . Contains ( value ) )
96
- coderrCollection . Properties [ CoderrCollectionProperties . HighlightProperties ] = $ "{ values } ,{ values } ";
96
+ coderrCollection . Properties [ CoderrCollectionProperties . HighlightCollection ] = $ "{ values } ,{ value } ";
97
97
}
98
98
99
99
You can’t perform that action at this time.
0 commit comments