Skip to content

Commit

Permalink
Fix multimer check again
Browse files Browse the repository at this point in the history
  • Loading branch information
milot-mirdita committed Apr 16, 2024
1 parent 53327e7 commit 31333dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/ResultView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ export default {
return this.hits ? this.hits.mode : "";
},
isComplex() {
if (this.hits?.results?.[0]?.alignments?.[0]?.complexqtm != null) {
if (this.hits?.results?.[0]?.alignments?.[0]?.[0]?.complexqtm != null) {
return true;
}
return false;
Expand Down

0 comments on commit 31333dd

Please sign in to comment.