From 62f43e59d75fd983894bcf8c6dea0c18494f83c6 Mon Sep 17 00:00:00 2001 From: Amritanshu Date: Wed, 23 Sep 2026 10:48:04 +0000 Subject: [PATCH] Fix: Journal ctrl+P not working --- overlord/src/app/journal/journal.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlord/src/app/journal/journal.component.ts b/overlord/src/app/journal/journal.component.ts index 2e53a9e3..8e43942e 100644 --- a/overlord/src/app/journal/journal.component.ts +++ b/overlord/src/app/journal/journal.component.ts @@ -164,7 +164,7 @@ export class JournalComponent { postListner(event: Event) { event.preventDefault(); - if (this.id() && !this.form.posted() && this.auth.allowed('post-vouchers')) { + if (this.id() && !this.form.posted().controlValue() && this.auth.allowed('post-vouchers')) { this.post(); } }