mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
UI – Update host activity feed empty states and tooltip (#21530)
## Addresses #20955 <img width="988" alt="Screenshot 2024-08-23 at 8 58 02 AM" src="https://github.com/user-attachments/assets/29d03464-1795-4b2a-b15f-2c974db184ca"> <img width="733" alt="Screenshot 2024-08-23 at 8 58 09 AM" src="https://github.com/user-attachments/assets/780fa0ee-747a-4f73-982b-891042124633"> - [x] Changes file added for user-visible changes in `changes/`, - [x] Manual QA for all new/changed functionality --------- Co-authored-by: Jacob Shandling <jacob@fleetdm.com>
This commit is contained in:
parent
08783b1a12
commit
de06873050
4 changed files with 8 additions and 5 deletions
2
changes/20955-host-activity-feed-copy-updates
Normal file
2
changes/20955-host-activity-feed-copy-updates
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
* Update Host details activities tooltip and empty state copy to reflect recently added
|
||||
capabilities.
|
||||
|
|
@ -31,11 +31,12 @@ const UpcomingTooltip = () => {
|
|||
<TooltipWrapper
|
||||
tipContent={
|
||||
<>
|
||||
Upcoming activities will run as listed. Failure of one activity
|
||||
won't cancel other activities.
|
||||
Currently, only scripts run before other scripts and
|
||||
<br />
|
||||
software is installed before other software.
|
||||
<br />
|
||||
<br />
|
||||
Currently, only scripts are guaranteed to run in order.
|
||||
Failure of one activity won't cancel other activities.
|
||||
</>
|
||||
}
|
||||
className={`${baseClass}__upcoming-tooltip`}
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ const PastActivityFeed = ({
|
|||
return (
|
||||
<EmptyFeed
|
||||
title="No activity"
|
||||
message="When a script runs on a host, it shows up here."
|
||||
message="Completed actions will appear here (scripts, software, lock, and wipe)."
|
||||
className={`${baseClass}__empty-feed`}
|
||||
/>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ const UpcomingActivityFeed = ({
|
|||
return (
|
||||
<EmptyFeed
|
||||
title="No pending activity "
|
||||
message="When you run a script on an offline host, it will appear here."
|
||||
message="Pending actions will appear here (scripts, software, lock, and wipe)."
|
||||
className={`${baseClass}__empty-feed`}
|
||||
/>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue