File tree Expand file tree Collapse file tree
src/components/events/partials/ModalTabsAndPages Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ import ButtonLikeAnchor from "../../../shared/ButtonLikeAnchor";
3232import { formatWorkflowsForDropdown } from "../../../../utils/dropDownUtils" ;
3333import { ParseKeys } from "i18next" ;
3434import BaseButton from "../../../shared/BaseButton" ;
35+ import { Tooltip } from "../../../shared/Tooltip" ;
3536
3637type InitialValues = {
3738 workflowDefinition : string ;
@@ -202,7 +203,11 @@ const EventDetailsWorkflowTab = ({
202203 < tr key = { key } >
203204 < td > { item . id } </ td >
204205 < td > { item . title } </ td >
205- < td > { item . submitter } </ td >
206+ < td >
207+ < Tooltip title = { item . submitterName } >
208+ < span > { item . submitter } </ span >
209+ </ Tooltip >
210+ </ td >
206211 < td >
207212 { t ( "dateFormats.dateTime.medium" , {
208213 dateTime : renderValidDate ( item . submitted ) ,
You can’t perform that action at this time.
0 commit comments