Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Commit

Permalink
fix: parse queryparam as boolean, not string
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanH90 committed Aug 8, 2023
1 parent 2df655f commit c5a4a98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/index/reports/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ export default class IndexReportController extends Controller {
@tracked task;
@tracked duration;
@tracked comment;
@tracked review;
@tracked notBillable;
@tracked review = false;
@tracked notBillable = false;

@service notify;
@service router;
Expand Down

0 comments on commit c5a4a98

Please sign in to comment.