Skip to content

Commit

Permalink
Now fixed the regression bug due to ds.notPathwayData methods is gone.
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorRodchenkov committed Apr 21, 2024
1 parent b9d4971 commit 40c2a29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/webapp/jsp/datasources.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
</h3>
<p><strong>{{ds.description}}</code></strong></p>
<p><var>Type: </var><code>{{ds.type}}</code></p>
<p ng-hide="ds.type.notPathwayData"><var>URI: </var><code>${cpath.xmlBase}{{ds.identifier}}</code></p>
<p ng-hide="ds.type === 'WAREHOUSE' || ds.type === 'MAPPING'"><var>URI: </var><code>${cpath.xmlBase}{{ds.identifier}}</code></p>
<p><var>Names: </var><code>{{uniqueStrings(ds.name) + ""}}</code></p>
<p ng-hide="ds.type.notPathwayData">
<p ng-hide="ds.type === 'WAREHOUSE' || ds.type === 'MAPPING'">
<var>Contains: </var>
<span ng-show="ds.numPathways > 0"><span class="badge alert-info">{{ds.numPathways}}</span> pathways,</span>
<span ng-show="ds.numInteractions > 0"><span class="badge alert-info">{{ds.numInteractions}}</span> interactions,</span>
Expand Down

0 comments on commit 40c2a29

Please sign in to comment.