mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 01:18:42 +00:00
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:
parent
1d6ed55205
commit
6a3b7b8315
2 changed files with 13 additions and 4 deletions
1
changes/issue-15762-bold-activities
Normal file
1
changes/issue-15762-bold-activities
Normal file
|
|
@ -0,0 +1 @@
|
|||
- add bold styling to profile name on adding and deleting custom profile activities
|
||||
|
|
@ -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</>
|
||||
)}{" "}
|
||||
|
|
|
|||
Loading…
Reference in a new issue