From b3b367fcb35aff0d48675c26296365233ba86aa2 Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 10 Dec 2021 16:37:30 +0100 Subject: [PATCH] Fix https://github.com/firefly-iii/firefly-iii/issues/5296 --- frontend/src/components/transactions/Create.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/components/transactions/Create.vue b/frontend/src/components/transactions/Create.vue index faf69c6ece..b4aa5581d1 100644 --- a/frontend/src/components/transactions/Create.vue +++ b/frontend/src/components/transactions/Create.vue @@ -446,6 +446,10 @@ export default { }, storeField: function (payload) { this.updateField(payload); + if('description' === payload.field) { + // jump to account + this.$refs.splitForms[payload.index].$refs.sourceAccount.giveFocus(); + } }, storeDate: function (payload) { this.date = payload.date;