Skip to content
Snippets Groups Projects
Commit 4a53108a authored by Julian Späth's avatar Julian Späth
Browse files

Merge branch 'add-score-to-superanalysis' into 'master'

Add scores to super analysis

See merge request covid-19/frontend!96
parents 4e2a3119 6d596e92
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ import {toast} from 'bulma-toast';
import {Injectable} from '@angular/core';
export type AlgorithmType = 'trustrank' | 'keypathwayminer' | 'multisteiner' | 'closeness' | 'degree';
export type QuickAlgorithmType = 'quick';
export type QuickAlgorithmType = 'quick' | 'super';
export const algorithmNames = {
trustrank: 'Trust-Rank',
......
......@@ -135,7 +135,7 @@ export class AnalysisWindowComponent implements OnInit, OnChanges {
}));
await Promise.all(promises);
this.tableHasScores = ['trustrank', 'closeness', 'degree', 'quick'].indexOf(this.task.info.algorithm) !== -1;
this.tableHasScores = ['trustrank', 'closeness', 'degree', 'quick', 'super'].indexOf(this.task.info.algorithm) !== -1;
if (this.tableHasScores) {
this.toggleNormalization(true);
}
......
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