Skip to content

Commit

Permalink
Merged in bugfix/SHIBUI-1064 (pull request #265)
Browse files Browse the repository at this point in the history
SHIBUI-1064 bug fixes for NameID format filter

Approved-by: Jonathan Johnson <jj@scaldingspoon.com>
  • Loading branch information
rmathis committed Dec 13, 2018
2 parents bbcaece + 192d6dc commit a8c8109
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions backend/src/main/resources/i18n/messages_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ label.authentication-methods-to-use=Authentication Methods to Use
label.auth-method-indexed=Authentication Method
label.preview-provider=Preview XML
label.search-entity-id=Search Entity Id
label.edit-filter=Edit EntityAttributesFilter
label.edit-filter=Edit Filter
label.min-4-chars=Minimum 4 characters.
label.new-filter=New Filter - EntityAttributes
label.new-filter=New Filter
label.service-provider=Metadata Source Name:
label.created-date=Created Date:
label.service-entity-id=Metadata Source Entity ID:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<span class="display-6">
<i class="fa fa-fw fa-gears"></i>&nbsp;&nbsp;
<ng-container *ngIf="type$ | async">
<translate-i18n key="label.edit-filter">Edit Filter</translate-i18n>&ndash; {{ type$ | async }}
<translate-i18n key="label.edit-filter">Edit Filter</translate-i18n> &ndash; {{ type$ | async }}
</ng-container>
</span>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="col-md-12">
<span class="display-6">
<i class="fa fa-fw fa-gears"></i>&nbsp;&nbsp;
<translate-i18n key="label.new-filter">New Filter - EntityAttributes</translate-i18n>
<translate-i18n key="label.new-filter">New Filter</translate-i18n>
</span>
</div>
</div>
Expand All @@ -15,8 +15,11 @@
<div class="d-flex justify-content-between">
<form [formGroup]="form" class="d-block w-50">
<div class="form-group">
<label for="type">
<translate-i18n key="label.select-filter-type">Select Filter Type</translate-i18n>
<label for="type" class="d-flex justify-content-start control-label">
<span>
<translate-i18n key="label.select-filter-type">Select Filter Type</translate-i18n>
<i class="fa fa-asterisk text-danger" aria-hidden="true"></i>
</span>
</label>
<select class="form-control" formControlName="type" name="type">
<option value="" disabled>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@
<translate-i18n key="label.search-criteria-by" [params]="{ displayType: (displayType | translate) }">
Search Criteria by {{ this.displayType | translate }}
</translate-i18n>&nbsp;&nbsp;
<i class="fa fa-asterisk text-danger"
aria-hidden="true"
*ngIf="targetType !== 'ENTITY'"></i>
<i class="fa fa-asterisk text-danger" aria-hidden="true"></i>
</span>
<span>
<info-icon [description]="'label.search-criteria-by' | translate:{ displayType: (displayType | translate) }"></info-icon>
Expand Down

0 comments on commit a8c8109

Please sign in to comment.