add bold styling to profile name in activities (#15787)

relates to #15762

Add bold styling to the profiles names on adding and deleting profiles
activities.

- [x] Changes file added for user-visible changes in `changes/` or
`orbit/changes/`.
- [x] Manual QA for all new/changed functionality
This commit is contained in:
Gabriel Hernandez 2023-12-21 11:17:40 -06:00 committed by GitHub
parent 1d6ed55205
commit 6a3b7b8315
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 4 deletions

View file

@ -0,0 +1 @@
- add bold styling to profile name on adding and deleting custom profile activities

View file

@ -343,7 +343,9 @@ const TAGGED_TEMPLATES = {
{" "}
added{" "}
{profileName ? (
<>configuration profile {profileName}</>
<>
configuration profile <b>{profileName}</b>
</>
) : (
<>a configuration profile</>
)}{" "}
@ -364,7 +366,9 @@ const TAGGED_TEMPLATES = {
{" "}
deleted{" "}
{profileName ? (
<>configuration profile {profileName}</>
<>
configuration profile <b>{profileName}</b>
</>
) : (
<>a configuration profile</>
)}{" "}
@ -399,7 +403,9 @@ const TAGGED_TEMPLATES = {
{" "}
added{" "}
{profileName ? (
<>configuration profile {profileName}</>
<>
configuration profile <b>{profileName}</b>
</>
) : (
<>a configuration profile</>
)}{" "}
@ -420,7 +426,9 @@ const TAGGED_TEMPLATES = {
{" "}
deleted{" "}
{profileName ? (
<>configuration profile {profileName}</>
<>
configuration profile <b>{profileName}</b>
</>
) : (
<>a configuration profile</>
)}{" "}