deposit.component: Bug fix: If no organization selected, move warning message below (not next to) from selection input.

git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@54429 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
konstantina.galouni 2018-12-17 11:01:19 +00:00
parent 4c9ebd1b69
commit 3eb73f599c
1 changed files with 2 additions and 1 deletions

View File

@ -40,8 +40,9 @@
<button class=" uk-margin-left uk-button portal-button" type="submit" (click)="organizationSelected(selectedId)" >
Locate
</button>
<div *ngIf="warningMessage.length > 0" class="uk-alert uk-alert-warning uk-animation-fade" role="alert">{{warningMessage}}</div>
</form>
<div *ngIf="warningMessage.length > 0" class="uk-alert uk-alert-warning uk-animation-fade" role="alert">{{warningMessage}}</div>
<div *ngIf="searchBySubjects" >
<deposit-by-subject></deposit-by-subject>
</div>