Skip to content

Commit

Permalink
The ExperimentSummaryDialog works again now
Browse files Browse the repository at this point in the history
  • Loading branch information
pverscha committed Oct 11, 2022
1 parent ee8bcea commit c7a4b81
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 @@ -192,7 +192,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 @@ -237,6 +236,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 c7a4b81

Please sign in to comment.