-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Build fixups in master #19338
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build fixups in master #19338
Conversation
pranavkm
commented
Feb 25, 2020
- Fix error with nullable
- Commit yarn.lock produced from building Microsoft.InteropJS
@@ -42,39 +42,39 @@ public bool TryFindElementById(string id, [NotNullWhen(true)] out ElementNode? e | |||
foreach (var kvp in Components) | |||
{ | |||
var component = kvp.Value; | |||
if (TryGetElementFromChildren(component, out element)) | |||
if (TryGetElementFromChildren(component, id, out element)) | |||
{ | |||
return true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This complains because element
isn't guaranteed to be non-null. Only appears when building in VS
@@ -0,0 +1,258 @@ | |||
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JunTaoLuo does the package.json need to be removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You mean the package.lock.json? Then you can remove it if you'd like.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, you're right, the lock file.
* Fix error with nullable * Commit yarn.lock produced from building Microsoft.InteropJS
293e8d7
to
3177f2d
Compare