Skip to content

Commit c7b14b6

Browse files
committed
return empty string if no version
1 parent 274a056 commit c7b14b6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Nodejs/Product/Nodejs/Project/ImportWizard/ImportSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ private static string GetLatestAvailableTypeScriptVersionFromSetup()
554554
.First();
555555
}
556556

557-
return null;
557+
return "";
558558
}
559559
}
560560
}

Nodejs/Product/ProjectWizard/NodejsPackageParametersExtension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ private static string GetLatestAvailableTypeScriptVersionFromSetup()
9090
.First();
9191
}
9292

93-
return null;
93+
return "";
9494
}
9595
}
9696
}

0 commit comments

Comments
 (0)