File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -549,7 +549,10 @@ const generateLocalizedJsonSchemaFiles = () => {
549
549
keyPrefix = keyPrefix . replace ( / \\ / g, "/" ) ;
550
550
let descriptionCallback = ( path , value , parent ) => {
551
551
if ( stringTable [ keyPrefix + path ] ) {
552
- parent . description = stringTable [ keyPrefix + path ] ;
552
+ if ( ! parent . markdownDescription )
553
+ parent . description = stringTable [ keyPrefix + path ] ;
554
+ else
555
+ parent . markdownDescription = stringTable [ keyPrefix + path ] ;
553
556
}
554
557
} ;
555
558
traverseJson ( jsonTree , descriptionCallback , "" ) ;
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ export function activate(): void {
65
65
if ( packageInfo ) {
66
66
let targetPopulation : TargetPopulation ;
67
67
const userVersion : PackageVersion = new PackageVersion ( packageInfo . version ) ;
68
- if ( userVersion . suffix === "" ) {
68
+ if ( ! userVersion . suffix ) {
69
69
targetPopulation = TargetPopulation . Public ;
70
70
} else if ( userVersion . suffix === "insiders" ) {
71
71
targetPopulation = TargetPopulation . Insiders ;
You can’t perform that action at this time.
0 commit comments