Skip to content

Commit

Permalink
Merge pull request #2560 from DSpace/backport-2439-to-dspace-7_x
Browse files Browse the repository at this point in the history
[Port dspace-7_x] Fix Request-a-Copy grant form optional message not optional in form validation
  • Loading branch information
tdonohue authored Oct 20, 2023
2 parents c3ee2ca + e9b70e3 commit 33c2c98
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 33c2c98

Please sign in to comment.