Added autocomplete suggestions to the bibles path setting field. Cleaned up a few things.

This commit is contained in:
Caleb Campbell
2025-07-17 08:06:23 +10:00
parent 62e3498cab
commit 218ddbfea7
5 changed files with 73 additions and 22 deletions

View File

@@ -68,7 +68,7 @@ export class PassageReference implements ChapterReference, PassageOptions {
if (this.startVerse === 1 && this.endVerse === -1) {
if (this.startChapter === this.endChapter)
return (
this.book.name + `${this.startChapter} - ${this.version}`
this.book.name + ` ${this.startChapter} - ${this.version}`
);
return (
`${this.book.name} ${this.startChapter}-` +
@@ -81,7 +81,7 @@ export class PassageReference implements ChapterReference, PassageOptions {
if (this.startVerse === this.endVerse)
return (
this.book.name +
`${this.startChapter}:${this.startVerse} - ${this.version}`
` ${this.startChapter}:${this.startVerse} - ${this.version}`
);
return (
`${this.book.name} ${this.startChapter}:` +