fix: reset correct loading state after manual transaction processing
Some checks failed
CI / lint (push) Has been cancelled
CI / tests (3.10) (push) Has been cancelled
CI / tests (3.9) (push) Has been cancelled

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 <noreply@anthropic.com>
This commit is contained in:
padreug 2026-01-05 20:57:25 +01:00
parent ab4e3d6b12
commit 8d94dcc2b7

View file

@ -670,7 +670,7 @@ window.app = Vue.createApp({
} catch (error) { } catch (error) {
LNbits.utils.notifyApiError(error) LNbits.utils.notifyApiError(error)
} finally { } finally {
this.runningTestTransaction = false this.processingSpecificTransaction = false
} }
}, },