FIX: Show user status tooltip on the assign modal

This commit is contained in:
Jan Cernik 2023-03-30 12:51:10 -03:00
parent 996c5ea493
commit ff9ef36a28
No known key found for this signature in database
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,7 @@
import EmailGroupUserChooserRow from "select-kit/components/email-group-user-chooser-row";
export default EmailGroupUserChooserRow.extend();
export default EmailGroupUserChooserRow.extend({
stopPropagation(instance, event) {
event.stopPropagation();
},
});

View File

@ -6,7 +6,8 @@
{{#if (and this.item.showUserStatus this.item.status)}}
<UserStatusMessage
@status={{this.item.status}}
@showDescription={{true}}
@onTrigger={{this.stopPropagation}}
@onUntrigger={{this.stopPropagation}}
/>
{{/if}}
</div>

View File

@ -109,6 +109,7 @@
align-items: baseline;
line-height: var(--line-height-small);
overflow: hidden;
pointer-events: all;
}
.name {