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 (