Skip to content
Snippets Groups Projects
Commit ba8e4941 authored by Julian Matschinske's avatar Julian Matschinske
Browse files

Merge branch 'last-fixes' into 'master'

Show scores, fix text

See merge request covid-19/frontend!146
parents 2ff9c5d0 204372f4
Branches
Tags
No related merge requests found
...@@ -191,7 +191,8 @@ export class AnalysisPanelComponent implements OnInit, OnChanges { ...@@ -191,7 +191,8 @@ export class AnalysisPanelComponent implements OnInit, OnChanges {
})); }));
await Promise.all(promises); await Promise.all(promises);
this.tableHasScores = ['trustrank', 'closeness', 'degree', 'quick', 'super'].indexOf(this.task.info.algorithm) !== -1; this.tableHasScores = ['trustrank', 'closeness', 'degree', 'proximity', 'betweenness', 'quick', 'super']
.indexOf(this.task.info.algorithm) !== -1;
if (this.tableHasScores) { if (this.tableHasScores) {
this.toggleNormalization(true); this.toggleNormalization(true);
} }
......
...@@ -309,9 +309,9 @@ ...@@ -309,9 +309,9 @@
</div> </div>
<div class="media-content"> <div class="media-content">
<div class="content"> <div class="content">
<h6 class="is-6">About Degree Centrality</h6> <h6 class="is-6">About Network Proximity</h6>
<p> <p>
Degree Centrality uses the average minimum distance from the drug’s targets to all of the selected Network Proximity uses the average minimum distance from the drug’s targets to all of the selected
seeds as a measure of proximity. seeds as a measure of proximity.
</p> </p>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment