Skip to content

Commit

Permalink
Merge pull request #1297 from /issues/1293
Browse files Browse the repository at this point in the history
Fix Shorten long fields for brevity #1293
  • Loading branch information
syntrydy committed Oct 7, 2018
2 parents 71ae72e + 9e8f0b6 commit 9ee222e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions server/src/main/webapp/resources/ox/clientSummary.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
style="cursor:pointer"
onclick="#{rich:component('clientSummary')}.hide(); return false;" />
</f:facet>
<div class="container">
<h:panelGroup style="overflow:scroll;">
<div class="container" style="overflow-y:scroll; height: 470px; margin-bottom: 20px;" >
<h:panelGroup>
<div class="row">
<div class="col-sm-6 col-lg-6">
<ox:decorate id="inum"
Expand Down Expand Up @@ -383,7 +383,8 @@
<ox:decorate id="jwks" label="#{msg['clientForm.jwks']}"
rendered="#{!empty cc.attrs._client.jwks and cc.attrs._client.jwks ne null }">
<h:outputText style="max-width: 150px;word-wrap:break-word;"
value="#{cc.attrs._client.jwks}" id="jwksId" escape="false" />
value="#{cc.attrs._client.jwks.length() gt 100 ? cc.attrs._client.jwks.substring(0,97).concat('...') : cc.attrs._client.jwks}"
id="jwksId" escape="false" />
</ox:decorate>
<ox:decorate id="subjectType"
label="#{msg['clientForm.subjectType']}"
Expand Down

0 comments on commit 9ee222e

Please sign in to comment.