diff --git a/frontend/src/components/HistoryTab.vue b/frontend/src/components/HistoryTab.vue index de9a198c..4e13eaae 100644 --- a/frontend/src/components/HistoryTab.vue +++ b/frontend/src/components/HistoryTab.vue @@ -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 }