Skip to content

Commit

Permalink
SHIBUI-1387 Fixed issue with layout in summary
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Aug 5, 2019
1 parent b8207c7 commit d97998c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions backend/src/main/resources/i18n/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,10 @@ label.x509-certificates=X509 Certificates
label.certificate-name-display-only=Certificate Name (Display Only)
label.certificate=Certificate
label.assertion-consumer-services=Assertion Consumer Services
label.assertion-consumer-service-location=Assertion Consumer Service Location
label.assertion-consumer-service-location=Location
label.assertion-consumer-service-endpoint=Assertion Consumer Service Endpoints
label.default=(default)
label.assertion-consumer-service-location-binding=Assertion Consumer Service Location Binding
label.assertion-consumer-service-location-binding=Location Binding
label.relying-party-overrides=Relying Party Overrides
label.sign-the-assertion=Sign the Assertion?
label.turn-off-encryption-of-response=Turn off Encryption of Response?
Expand Down
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 @@ -159,10 +159,10 @@ label.x509-certificates=X509 Certificates
label.certificate-name-display-only=Certificate Name (Display Only)
label.certificate=Certificate
label.assertion-consumer-services=Assertion Consumer Services
label.assertion-consumer-service-location=Assertion Consumer Service Location
label.assertion-consumer-service-location=Location
label.assertion-consumer-service-endpoint=Assertion Consumer Service Endpoints
label.default=(default)
label.assertion-consumer-service-location-binding=Assertion Consumer Service Location Binding
label.assertion-consumer-service-location-binding=Location Binding
label.relying-party-overrides=Relying Party Overrides
label.sign-the-assertion=Sign the Assertion?
label.turn-off-encryption-of-response=Turn off Encryption of Response?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@
<tr *ngFor="let value of property.value">
<td *ngFor="let prop of getKeys(property.items)"
[ngbPopover]="value[prop]"
popoverClass="popover-lg"
triggers="mouseenter:mouseleave"
container="body"
placement="top">
placement="top"
class="break-all">
{{ value[prop] }}
</td>
</tr>
Expand Down
6 changes: 5 additions & 1 deletion ui/src/theme/utility.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,8 @@

.w-40 {
width: 40%;
}
}

.break-all {
word-break: break-all;
}

0 comments on commit d97998c

Please sign in to comment.