Skip to content

Commit

Permalink
[fli-iam#1864] Correct typo
Browse files Browse the repository at this point in the history
  • Loading branch information
youennmerel committed Sep 20, 2023
1 parent 0505fd7 commit e4b8e35
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions shanoir-ng-front/src/app/import/bids/bids-upload.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@
<tool-tip>A research study is the global study context. Examples: Children dysphasia, Therapeutic effect of mitoxantrone in multiple sclerosis, based on MRI and clinical criteria...</tool-tip>
</legend>
<li>
<label class="required-label">Select a research study</label>
<label class="required-label">Select a research study</label>
<span class="right-col">
<select-box
<select-box
[(ngModel)]="study"
(userChange)="onSelectStudy();"
[viewRoute]="'/study/details/' + this.study?.id"
[viewDisabled]="!study"
[viewRoute]="'/study/details/' + this.study?.id"
[viewDisabled]="!study"
[options]="studyOptions">
</select-box>
</span>
</li>
<li>
<label>Select an associated center</label>
<label>Select an associated center</label>
<span class="right-col">
<select-box
[disabled]="(!study || !centerOptions || study.monoCenter || this.study.studyCenterList.length == 1)"
Expand All @@ -72,7 +72,7 @@
</fieldset>

<upload-file (fileChange)="uploadArchive($event)" [loading]="archiveStatus == 'uploading'" [error]="archiveStatus == 'error'"></upload-file>
<label *ngIf="archiveStatus == 'uploaded'" > Data sucessufully imported.</label>
<label *ngIf="archiveStatus == 'uploaded'" > Data successfully imported.</label>
<label *ngIf="errorMessage" class="form-validation-alert" i18n="Import|ExtensionError label">
{{errorMessage}}
</label>
Expand Down

0 comments on commit e4b8e35

Please sign in to comment.