Skip to content

Commit

Permalink
Merge pull request #293 from MadhuMosip/develop
Browse files Browse the repository at this point in the history
MOSIP-17283 Added asterisk for bulk upload create packages
  • Loading branch information
aranaravi authored Mar 7, 2024
2 parents 1f3f1ff + 1c3f60b commit 59484d5
Showing 1 changed file with 1 addition and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ <h3>{{'packet-upload.header' | translate}}</h3>
<div [formGroup]="uploadForm" class="primary-form" *ngIf="uploadForm">
<mat-form-field>
<mat-label>{{'packet-upload.createView.center' | translate}}</mat-label>
<mat-select formControlName="centerId" id="centerId">
<mat-select formControlName="centerId" id="centerId" required>
<mat-option
*ngFor="let data of dynamicDropDown['centerList']"
(onSelectionChange)="captureDropDownValue($event, 'centerId')"
Expand Down Expand Up @@ -83,18 +83,6 @@ <h3>{{'packet-upload.header' | translate}}</h3>
{{'genericerror.fieldValidation' | translate}}
</mat-error>
</mat-form-field>


<!-- <div class="custom-file-input">
<input type="button" *ngIf="buttonalignment === 'rtl'" value="{{'packet-upload.createView.input-btn-text' | translate}}" class="browseInput">
<input type="file" multiple="multiple" id="fileInput" #fileInput (click)="$event.target.value=null" (change)="onFileSelect($event)" required placeholder="{{'packet-upload.createView.input-text1' | translate}}" />
<input type="text" id="fileName" [value]="fileName" placeholder="{{'packet-upload.createView.input-text2' | translate}}" >
<span style="color:#ff0000;font-size:12px;left: 114px;" class="required-annotation">*</span>
<input type="button" *ngIf="buttonalignment === 'ltr'" value="{{'packet-upload.createView.input-btn-text' | translate}}" class="browseInput">
<mat-error *ngIf="fileNameError">
{{'genericerror.fieldValidation' | translate}}
</mat-error>
</div> -->
<label class="labelfileupload">{{'uploadcertificate.uploadYourFile' | translate}} <span style="color:red;">*</span></label>
<div class="fileuploadcontainer" appDnd (fileDropped)="onFileDropped($event)" id="custom-file-input">
<input (click)="$event.target.value=null" type="file" #fileInput id="fileInput" (change)="onFileSelect($event)"/>
Expand Down

0 comments on commit 59484d5

Please sign in to comment.