Skip to content

Commit

Permalink
ELEMENTS-1731: Fix display of long username under activity section
Browse files Browse the repository at this point in the history
  • Loading branch information
alokhyland committed Mar 28, 2024
1 parent 3312238 commit b687b30
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ui/widgets/nuxeo-user-tag.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ import './nuxeo-tooltip.js';
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 100px;
}
</style>
<nuxeo-tag>
Expand All @@ -80,6 +81,9 @@ import './nuxeo-tooltip.js';
<dom-if if="[[_hasLink(disabled, user)]]">
<template>
<a href$="[[_href(user)]]" class="user-tag" on-click="_preventPropagation">[[_name(user)]]</a>
<nuxeo-tooltip position="top" offset="0" animation-delay="0">
[[_name(user)]]
</nuxeo-tooltip>
</template>
</dom-if>
<dom-if if="[[!_hasLink(disabled, user)]]">
Expand Down

0 comments on commit b687b30

Please sign in to comment.