Skip to content

Commit

Permalink
Update IndexPage.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
tinohager committed Jul 20, 2024
1 parent 11af617 commit 2fbc037
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Frontend/src/pages/IndexPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const returnPathHeaders = computed(() => {
})
const returnPath = computed(() => {
if (!returnPathHeaders.value) {
if (!returnPathHeaders.value || returnPathHeaders.value.length === 0) {
return undefined
}
Expand All @@ -84,7 +84,7 @@ const fromHeaders = computed(() => {
})
const from = computed(() => {
if (!fromHeaders.value) {
if (!fromHeaders.value || fromHeaders.value.length === 0) {
return undefined
}
Expand All @@ -96,7 +96,7 @@ const toHeaders = computed(() => {
})
const to = computed(() => {
if (!toHeaders.value) {
if (!toHeaders.value || toHeaders.value.length === 0) {
return undefined
}
Expand All @@ -116,7 +116,7 @@ const subjectHeaders = computed(() => {
})
const subject = computed(() => {
if (!subjectHeaders.value) {
if (!subjectHeaders.value || subjectHeaders.value.length === 0) {
return undefined
}
Expand Down

0 comments on commit 2fbc037

Please sign in to comment.