-
Notifications
You must be signed in to change notification settings - Fork 641
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
[Readme]Add message for readme during validation #8608
Conversation
Could you paste a screenshot in the description? |
@@ -135,6 +135,7 @@ public DisplayPackageViewModelFactory(IIconUrlProvider iconUrlProvider) | |||
viewModel.ReadMeImagesRewritten = readmeResult != null ? readmeResult.ImagesRewritten : false; | |||
viewModel.ReadmeImageSourceDisallowed = readmeResult != null ? readmeResult.ImageSourceDisallowed : false; | |||
viewModel.HasEmbeddedIcon = package.HasEmbeddedIcon; | |||
viewModel.HasEmbeddedReadmeFile = package.HasEmbeddedReadme; |
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.
Seems that this property already existed but was not being set. A UT would help here.
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.
Add a unit test then .
Summary of the changes (in less than 80 characters):
Add message about embedded readme available after validation
after:
Addresses: #8507