Skip to content

Commit f34aee0

Browse files
committed
Merge branch 'add-username-on-event-details-workflow-tab' of miesgre/opencast-admin-interface into r/17.x
Pull request #1443 Improvement: Update the submitter display in the event details tab
2 parents 9371e37 + 3618e2a commit f34aee0

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/components/events/partials/ModalTabsAndPages/EventDetailsWorkflowTab.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ import ButtonLikeAnchor from "../../../shared/ButtonLikeAnchor";
3232
import { formatWorkflowsForDropdown } from "../../../../utils/dropDownUtils";
3333
import { ParseKeys } from "i18next";
3434
import BaseButton from "../../../shared/BaseButton";
35+
import { Tooltip } from "../../../shared/Tooltip";
3536

3637
type 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),

0 commit comments

Comments
 (0)