Skip to content

Commit

Permalink
Fix #3305 (Some Footnotes Not Displayed in AndBible Version 5.x)
Browse files Browse the repository at this point in the history
  • Loading branch information
tuomas2 committed Aug 22, 2024
1 parent 6f05993 commit bbeaca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/bibleview-js/src/components/OSIS/Note.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function runningHandle() {
}
const handle = computed(() => props.n || runningHandle());
const isFootNote = computed(() => ["explanation", "translation", "study", "variant", "alternative", "x-editor-correction", undefined].includes(props.type!));
const isFootNote = computed(() => ["x-footnote", "explanation", "translation", "study", "variant", "alternative", "x-editor-correction", undefined].includes(props.type!));
const typeStr = computed(() => get(typeStrings, props.type!));
const noteType = computed(() => typeStr.value ? sprintf(strings.noteText, typeStr.value) : strings.noteTextWithoutType);
const isCrossReference = computed(() => props.type === "crossReference");
Expand Down

0 comments on commit bbeaca1

Please sign in to comment.