diff --git a/src/app/analysis.service.ts b/src/app/analysis.service.ts
index 4b040e5c870fd8e66350cbf5e35661d31152d70c..48e2f7389ee590f1b16987b259e14c816b6819a4 100644
--- a/src/app/analysis.service.ts
+++ b/src/app/analysis.service.ts
@@ -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',
diff --git a/src/app/components/analysis-window/analysis-window.component.ts b/src/app/components/analysis-window/analysis-window.component.ts
index e167fc61194838cc7c78685efa3e898c96677f44..c933e7477034f59a2ba25fbc16a9a231321fe5c6 100644
--- a/src/app/components/analysis-window/analysis-window.component.ts
+++ b/src/app/components/analysis-window/analysis-window.component.ts
@@ -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);
         }