Skip to content

Commit

Permalink
Merge pull request #104 from unipept/fix/reset-peptide-list
Browse files Browse the repository at this point in the history
Fix reset peptide list
  • Loading branch information
pverscha authored Dec 7, 2020
2 parents 306be06 + 09030e9 commit c3a77ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/navigation-drawers/StudyItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
v-on:select-assay="onSelectAssay">
</assay-item>
</div>
<v-dialog v-model="showCreateAssayDialog" max-width="800" v-if="study">
<v-dialog v-model="showCreateAssayDialog" v-if="study && showCreateAssayDialog" max-width="800">
<v-card>
<v-card-title>
Create assay
Expand All @@ -107,9 +107,9 @@
</v-card>
</v-dialog>
<search-configuration-dialog
v-model="showSearchConfigDialog"
:assay="searchConfigAssay"
:callback="searchConfigCallback">
v-model="showSearchConfigDialog"
:assay="searchConfigAssay"
:callback="searchConfigCallback">
</search-configuration-dialog>
<confirm-deletion-dialog
v-model="removeConfirmationActive"
Expand Down

0 comments on commit c3a77ef

Please sign in to comment.