Details
-
Type: Improvement
-
Status: Closed
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: 5.7.0-b1
-
Fix Version/s: 5.8.0-b1
-
Component/s: Client Interface
-
Labels:None
Description
A client can set a default payment method by clicking a radio button under Payment Accounts,
and then hitting set as default payment.
When users wanted to remove that, they had to click unidentified button in table header and hit set that as payment. This is a bit confusing. Instead, add a button to remove all associations.
Sample code:
This fairly quick by just adding float left button
<button id="remove-auto-debit" class="btn btn-danger float-left" type="button">
<i class="fas fa-minus-circle"></i> Remove Auto Debit
</button>
And the js part
$('#remove-auto-debit').click(function()
)