From 644f764b9aa7c9b8e4afc75e4bc417bd873ac8d2 Mon Sep 17 00:00:00 2001 From: Pieter Verschaffelt Date: Tue, 15 Mar 2022 11:31:58 +0100 Subject: [PATCH] Update link to peptides from summary table --- src/components/analysis/PeptideSummaryTable.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/analysis/PeptideSummaryTable.vue b/src/components/analysis/PeptideSummaryTable.vue index 8da589ae..306f674f 100644 --- a/src/components/analysis/PeptideSummaryTable.vue +++ b/src/components/analysis/PeptideSummaryTable.vue @@ -164,7 +164,7 @@ export default class PeptideSummaryTable extends Vue { } private openPeptide(peptide: Peptide): void { - this.$store.dispatch("peptideSummary/setPeptide", [peptide, this.assay.getSearchConfiguration().equateIl]); + this.$store.dispatch("analyseSinglePeptide", [peptide, this.assay.getSearchConfiguration().equateIl]); this.$router.push("/peptide/single"); } }