+
{{ reportName }}
@@ -241,6 +242,7 @@ import {
usePairStore,
useMetadataStore,
} from "@/api/stores";
+import router from "@/router";
const apiStore = useApiStore();
const fileStore = useFileStore();
@@ -319,6 +321,10 @@ const calculateBinColor = (x0: number, x1: number): string => {
// x1 represents the end value of the bin.
return x1 <= apiStore.cutoff ? "rgba(25, 118, 210, 0.25)" : "#1976D2";
};
+
+const gotoSurvey = () => {
+ router.push("https://ugent.qualtrics.com/jfe/form/SV_6QpMmrEuuoGSMWW");
+}