Skip to content

Commit

Permalink
Small snapshot position bug correction
Browse files Browse the repository at this point in the history
  • Loading branch information
alemangui committed Dec 23, 2024
1 parent c3e2f83 commit f26ba94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/HistoryTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const snapshots = computed(() => {
})
const showOnRight = (snapshot) => {
const rightSideStatus = ["OBSERVATION", "AUTHORIZED", "AWAITING_VISA"]
const rightSideStatus = ["OBSERVATION", "AUTHORIZED", "AWAITING_VISA", "OBJECTION"]
return rightSideStatus.indexOf(snapshot.status) > -1
}
</script>

0 comments on commit f26ba94

Please sign in to comment.