diff --git a/frontend/pages/DashboardPage/cards/ActivityFeed/ActivityItem/ActivityItem.tsx b/frontend/pages/DashboardPage/cards/ActivityFeed/ActivityItem/ActivityItem.tsx index 2acb4dcf07..e01cd5af88 100644 --- a/frontend/pages/DashboardPage/cards/ActivityFeed/ActivityItem/ActivityItem.tsx +++ b/frontend/pages/DashboardPage/cards/ActivityFeed/ActivityItem/ActivityItem.tsx @@ -753,8 +753,8 @@ const ActivityItem = ({ size="small" hasWhiteBackground /> -
-

+

+
{indicatePremiumFeature && } {activity.type === ActivityType.UserLoggedIn ? ( @@ -784,7 +784,7 @@ const ActivityItem = ({ > {internationalTimeFormat(activityCreatedAt)} -

+
diff --git a/frontend/pages/DashboardPage/cards/ActivityFeed/ActivityItem/_styles.scss b/frontend/pages/DashboardPage/cards/ActivityFeed/ActivityItem/_styles.scss index f6042f1980..f1cd27ed84 100644 --- a/frontend/pages/DashboardPage/cards/ActivityFeed/ActivityItem/_styles.scss +++ b/frontend/pages/DashboardPage/cards/ActivityFeed/ActivityItem/_styles.scss @@ -16,7 +16,7 @@ grid-row-end: 3; } - &__details { + &__details-wrapper { grid-column-start: 3; grid-row-start: 1; grid-row-end: 3; @@ -29,7 +29,7 @@ padding-right: $pad-xsmall; } - p { + .activity-details { margin: 0; line-height: 16px; } diff --git a/frontend/pages/DashboardPage/cards/HostsSummary/HostsSummary.tsx b/frontend/pages/DashboardPage/cards/HostsSummary/HostsSummary.tsx index 686be3cd8e..625f291964 100644 --- a/frontend/pages/DashboardPage/cards/HostsSummary/HostsSummary.tsx +++ b/frontend/pages/DashboardPage/cards/HostsSummary/HostsSummary.tsx @@ -51,6 +51,7 @@ const HostsSummary = ({ const renderMacCount = (teamId?: number) => ( { - if (selectedHostIds && isAllMatchingHostsSelected && hostsCount && hostsCount >= 500) { - return " When deleting a large volume of hosts, it may take some time for this change to be reflected in the UI." + if ( + selectedHostIds && + isAllMatchingHostsSelected && + hostsCount && + hostsCount >= 500 + ) { + return " When deleting a large volume of hosts, it may take some time for this change to be reflected in the UI."; } - return "" - } + return ""; + }; return (

- This action will delete {hostText()} from your Fleet instance.{largeVolumeText()} + This action will delete {hostText()} from your Fleet instance. + {largeVolumeText()}

If the hosts come back online, they will automatically re-enroll.