* Hide veto button for confirmed reimbursements
* Show confirmation block for confirmed reimbursements (when details visible)
* Hide expense line items by default for confirmed reimbursements, show/hide on click/tap (with hover indicator to discover)
* Show date range of line items while collapsed

refs #221
bumi
(Migrated from github.com)
reviewed 2024-03-07 16:06:08 +00:00
silverbucket
(Migrated from github.com)
reviewed 2024-03-07 16:06:08 +00:00
galfert
(Migrated from github.com)
approved these changes 2024-03-20 12:40:07 +00:00
I'm guessing this is the offender why you had to disable the linter rule `no-invalid-interactive`.
Adding a `role="button"` to the list element should fix that.
```suggestion
<li data-reimbursement-id={{@reimbursement.id}}
class="{{item-status @reimbursement}}"
role="button"
{{on "click" this.toggleExpenseDetails}}>
```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
refs #221
@@ -0,0 +1,68 @@import Component from '@glimmer/component';✂️
@@ -0,0 +1,41 @@<li data-reimbursement-id={{@reimbursement.id}}I'm guessing this is the offender why you had to disable the linter rule
no-invalid-interactive.Adding a
role="button"to the list element should fix that.