diff --git a/changes/issue-15762-bold-activities b/changes/issue-15762-bold-activities new file mode 100644 index 0000000000..53002e2f7a --- /dev/null +++ b/changes/issue-15762-bold-activities @@ -0,0 +1 @@ +- add bold styling to profile name on adding and deleting custom profile activities diff --git a/frontend/pages/DashboardPage/cards/ActivityFeed/ActivityItem/ActivityItem.tsx b/frontend/pages/DashboardPage/cards/ActivityFeed/ActivityItem/ActivityItem.tsx index dd0e8f1419..79d20feeff 100644 --- a/frontend/pages/DashboardPage/cards/ActivityFeed/ActivityItem/ActivityItem.tsx +++ b/frontend/pages/DashboardPage/cards/ActivityFeed/ActivityItem/ActivityItem.tsx @@ -343,7 +343,9 @@ const TAGGED_TEMPLATES = { {" "} added{" "} {profileName ? ( - <>configuration profile {profileName} + <> + configuration profile {profileName} + ) : ( <>a configuration profile )}{" "} @@ -364,7 +366,9 @@ const TAGGED_TEMPLATES = { {" "} deleted{" "} {profileName ? ( - <>configuration profile {profileName} + <> + configuration profile {profileName} + ) : ( <>a configuration profile )}{" "} @@ -399,7 +403,9 @@ const TAGGED_TEMPLATES = { {" "} added{" "} {profileName ? ( - <>configuration profile {profileName} + <> + configuration profile {profileName} + ) : ( <>a configuration profile )}{" "} @@ -420,7 +426,9 @@ const TAGGED_TEMPLATES = { {" "} deleted{" "} {profileName ? ( - <>configuration profile {profileName} + <> + configuration profile {profileName} + ) : ( <>a configuration profile )}{" "}