Skip to content

Commit

Permalink
Extend size of user selector for report transfer and grant access fun…
Browse files Browse the repository at this point in the history
…ctionality (#4352)
  • Loading branch information
evilaliv3 committed Dec 11, 2024
1 parent a8c747a commit 76f5fdd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<div class="modal-body">
<div id="ReceiverContextAdder" class="form-group">
<div class="input-group">
<ng-select class="w-25 rounded-end-0" [attr.data-cy]="'receiver_selection'" [(ngModel)]="receiver_id" [items]="selectableRecipients" bindLabel="name" placeholder="{{ 'Search' | translate }}" [searchable]="true">
<ng-select class="w-50 rounded-end-0" [attr.data-cy]="'receiver_selection'" [(ngModel)]="receiver_id" [items]="selectableRecipients" bindLabel="name" placeholder="{{ 'Search' | translate }}" [searchable]="true">
<ng-template ng-label-tmp let-item="item">
<span>{{ item.name }}</span>
</ng-template>
Expand All @@ -28,4 +28,4 @@
<i class="fa-solid fa-times"></i>
<span>{{'Close' | translate}}</span>
</a>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<div class="modal-body">
<div id="ReceiverContextAdder" class="form-group">
<div class="input-group">
<ng-select class="w-25 rounded-end-0" [attr.data-cy]="'receiver_selection'" [(ngModel)]="receiverId" [items]="selectableRecipients" bindLabel="name" placeholder="{{ 'Search' | translate }}" [searchable]="true">
<ng-select class="w-50 rounded-end-0" [attr.data-cy]="'receiver_selection'" [(ngModel)]="receiverId" [items]="selectableRecipients" bindLabel="name" placeholder="{{ 'Search' | translate }}" [searchable]="true">
<ng-template ng-label-tmp let-item="item">
<span>{{ item.name }}</span>
</ng-template>
Expand Down

0 comments on commit 76f5fdd

Please sign in to comment.