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
No related branches found
No related tags found
No related merge requests found
......@@ -191,7 +191,8 @@ export class AnalysisPanelComponent implements OnInit, OnChanges {
}));
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) {
this.toggleNormalization(true);
}
......
......@@ -309,9 +309,9 @@
</div>
<div class="media-content">
<div class="content">
<h6 class="is-6">About Degree Centrality</h6>
<h6 class="is-6">About Network Proximity</h6>
<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.
</p>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment