BDEVEXP-1740

* Fix to change back button text to 'OpenText product' when isOt2 is false.
* updated version number to 20.2.4 and bundled.
This commit is contained in:
Ashutosh Kumar Singh 2020-04-16 11:19:09 -04:00
parent a058429b45
commit 41b28eccb1
6 changed files with 17 additions and 15 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
{ {
"name": "otx-redoc", "name": "otx-redoc",
"version": "20.2.3", "version": "20.2.4",
"description": "ReDoc", "description": "ReDoc",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -23,7 +23,8 @@ export class ApiBackTo extends React.Component<{ isOt2: boolean }> {
<path d="M12.5 22L2 11.5L12.5 1" stroke="#0084CE" strokeWidth="2" strokeLinecap="round"/> <path d="M12.5 22L2 11.5L12.5 1" stroke="#0084CE" strokeWidth="2" strokeLinecap="round"/>
</svg> </svg>
<span style={{marginLeft: '-7px', color: this.state.backTextColor}}>OT2 services</span> {isOt2 ? <span style={{color: this.state.backTextColor}}>OT2 services</span>
: <span style={{color: this.state.backTextColor}}>OpenText product</span>}
</ApiBackToText> </ApiBackToText>
</div> </div>
); );