-
Notifications
You must be signed in to change notification settings - Fork 96
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
Fix problems displaying external links #944
Conversation
…ernal and getExVocab. Fixes #935
Codecov Report
@@ Coverage Diff @@
## master #944 +/- ##
============================================
+ Coverage 58.27% 58.38% +0.10%
+ Complexity 1490 1486 -4
============================================
Files 32 32
Lines 4168 4162 -6
============================================
+ Hits 2429 2430 +1
+ Misses 1739 1732 -7 Continue to review full report at Codecov.
|
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.
There is still this line
Skosmos/view/concept-shared.twig
Line 80 in c538175
{% if propval.isExternal %} |
This is as it should be. ConceptPropertyValue still has an isExternal method. It was only removed from ConceptMappingPropertyValue where it was not used anymore. |
SonarCloud Quality Gate failed.
|
Scrutinizer reports bogus code duplication issues - not really a problem with the code. SonarCloud reports code smells because of repeated literal strings in tests - not a problem and we have many of these already in the test suite. |
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.
Now this looks good to me. The original case is solved and unnecessary code has been removed, great work!
by more judicious use of isExternal and getExVocab. Fixes #935
ConceptMappingPropertyValue.isExternal() is removed because it is no longer being used.