From 8d94dcc2b723ed4825a700e47e122435189bd6ea Mon Sep 17 00:00:00 2001 From: padreug Date: Mon, 5 Jan 2026 20:57:25 +0100 Subject: [PATCH] fix: reset correct loading state after manual transaction processing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The finally block was resetting runningTestTransaction instead of processingSpecificTransaction, causing the button to stay in loading state after processing. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- static/js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/index.js b/static/js/index.js index 687db7d..610ec0a 100644 --- a/static/js/index.js +++ b/static/js/index.js @@ -670,7 +670,7 @@ window.app = Vue.createApp({ } catch (error) { LNbits.utils.notifyApiError(error) } finally { - this.runningTestTransaction = false + this.processingSpecificTransaction = false } },