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

Commit

Permalink
fix: the default value of rejected attribute in `ReportIntersection…
Browse files Browse the repository at this point in the history
…` is false
  • Loading branch information
MitanOmar committed Jan 10, 2024
1 parent cbd0ce1 commit 192c8a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/report-intersection.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Model, { attr, belongsTo } from "@ember-data/model";
export default class ReportIntersection extends Model {
@attr("string") comment;
@attr("boolean", { allowNull: true, defaultValue: null }) notBillable;
@attr("boolean", { allowNull: true, defaultValue: null }) rejected;
@attr("boolean", { allowNull: true, defaultValue: false }) rejected;
@attr("boolean", { allowNull: true, defaultValue: null }) review;
@attr("boolean", { allowNull: true, defaultValue: null }) billed;
@attr("boolean", { allowNull: true, defaultValue: null }) verified;
Expand Down

0 comments on commit 192c8a8

Please sign in to comment.