Skip to content

Commit

Permalink
Merge pull request #251 from unipept/fix/experiment-summary-dialog
Browse files Browse the repository at this point in the history
Fixed experiment summary dialog didn't work anymore
  • Loading branch information
pverscha authored Oct 11, 2022
2 parents 1ad35ee + c7a4b81 commit 6f61af0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/navigation-drawers/AssayItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,6 @@ export default class AssayItem extends Vue {
@Prop({ required: false, default: false })
private value: boolean;
private peptideTrust: PeptideTrust = null;
private experimentSummaryActive = false;
private removeConfirmationActive = false;
private isEditingAssayName = false;
Expand Down Expand Up @@ -243,6 +242,10 @@ export default class AssayItem extends Vue {
// return assayData?.analysisMetaData.status === "cancelled";
}
get peptideTrust(): PeptideTrust {
return this.$store.getters.assayData(this.assay)?.originalData?.trust || null;
}
private cancelAnalysis() {
this.$store.dispatch("cancelAnalysis", this.assay);
}
Expand Down

0 comments on commit 6f61af0

Please sign in to comment.