Skip to content

Commit

Permalink
correct delta issue and increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
El Ouakili, Abdelghani (IntlAssoc) committed Jul 24, 2020
1 parent 62164aa commit 9b6b473
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div style="position: relative;">
<img height="45px" src="../../../../../assets/nist_logo.png">
<a class="navbar-brand toolbar-name"> Implementation Guide Authoring and Management Tool
<span class="toolname-abbrv">(IGAMT) v1.1.0-beta</span>
<span class="toolname-abbrv">(IGAMT) v1.1.1-beta</span>

</a>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ export class TocSubMenuComponent implements OnInit {
}
ret.push(new SubMenu('./' + type + '/' + this.element.id + '/' + 'cross-references', 'Cross references', Icons.LIST));
}
if (this.element.origin && this.delta) {
console.log(this.element);
if (this.element.origin) {

if (this.element.fixedName !== 'DT' && this.element.fixedName !== 'TM' && this.element.fixedName !== 'DTM' ) {
ret.push(new SubMenu('./' + type + '/' + this.element.id + '/' + 'delta', 'Delta', Icons.LIST));
} else {
Expand Down

0 comments on commit 9b6b473

Please sign in to comment.