Skip to content

Commit

Permalink
allow 0 hours accepted (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
pshahsancsoft authored and rmaffitsancsoft committed Aug 5, 2024
1 parent 019f6c5 commit df64944
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ export class PSRTimeListComponent implements OnInit, OnDestroy {
time.billableHours = roundedBillableHours;
}

if (!time || billableHours == '0' || billableHours == '') {
if (!time || billableHours == '') {
await firstValueFrom(
this.modalService.alert(
'Error',
Expand Down

0 comments on commit df64944

Please sign in to comment.