-
Type: Bug
-
Status: Resolved
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 20
-
Component/s: Studio Features
-
Tags:
-
Sprint:Sprint DM/Studio 5.9.5-3
In the DocumentFeatureBuilder, there is an error while verifying the current target platform, because the id is used instead of the version.
final StudioTargetPlatformInstance targetPlatform = ctx.getProject().getTargetPlatform(); if (targetPlatform.isAfterVersion(TARGET_PLATFORM.CAP_5_8.getId())) { // BBB for NXS-1771: TAB_SECTION_CONTENT and TAB_CONTENT are now // equivalent in 5.8 if (disabledViews.contains(DocumentFeature.SECTION_CONTENT_TAB_ID)) { disabledViews.remove(DocumentFeature.SECTION_CONTENT_TAB_ID); disabledViews.add(DocumentFeature.CONTENT_TAB_ID); } }
The verification is always "false" so the replacement is never done in the built contribution.