inputChanged()

in src/app/journal.component.ts [198:205]


    inputChanged(e: KeyboardEvent) {
        if(e.key == "Enter") {
            this.ask_question()
        }
        if(this.question != "") {
            this.error_message = ""
        }
    }