Skip to content

Commit

Permalink
Merge pull request DSpace#2439 from amgciadev/fix-rac-grant-b
Browse files Browse the repository at this point in the history
Fix Request-a-Copy grant form optional message not optional in form validation
  • Loading branch information
tdonohue authored Oct 20, 2023
2 parents 1ffeae1 + 94c756d commit bf8519c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<ng-content></ng-content>
<div class="d-flex flex-row-reverse">
<button (click)="submit()"
[disabled]="!message || message.length === 0 || !subject || subject.length === 0"
[disabled]="!subject || subject.length === 0"
class="btn btn-primary"
title="{{'grant-deny-request-copy.email.send' | translate }}">
<i class="fas fa-envelope"></i> {{'grant-deny-request-copy.email.send' | translate }}
Expand Down

0 comments on commit bf8519c

Please sign in to comment.