in src/app/journal-entries.ts [21:29]
getEntries(selected_journal: string) {
if(selected_journal == "short") {
return this.short_entries
}
if(selected_journal == "long") {
return this.long_entries
}
return this.blank_entries
}