update UI tooltip for deadline input on the os settings target form (#25980)

For #25159

This updates the os settings Target form deadline input tooltip to make
it more correct for how the
deadline works for hosts. Macos, ios, and iPad all return the same
tooltip text now.

- [x] Changes file added for user-visible changes in `changes/`,
`orbit/changes/` or `ee/fleetd-chrome/changes`.
- [x] Manual QA for all new/changed functionality
This commit is contained in:
Gabriel Hernandez
2025-02-04 15:14:41 +00:00
committed by GitHub
parent fa65eb7b55
commit 686b56f892
2 changed files with 3 additions and 13 deletions
@@ -0,0 +1,2 @@
- update the os settings Target form deadline input tooltip to make the it more correct for how the
deadline works for hosts
@@ -181,18 +181,6 @@ const AppleOSTargetForm = ({
);
};
const getDeadlineTooltip = (platform: ApplePlatform) => {
switch (platform) {
case "darwin":
return "The end user can't dismiss the window once they reach this deadline. Deadline is at 12:00 (Noon) Pacific Standard Time (GMT-8).";
case "ios":
case "ipados":
return "Deadline is at 12:00 (Noon) Pacific Standard Time (GMT-8).";
default:
return "";
}
};
return (
<form className={baseClass} onSubmit={handleSubmit}>
<InputField
@@ -214,7 +202,7 @@ const AppleOSTargetForm = ({
/>
<InputField
label="Deadline"
tooltip={getDeadlineTooltip(applePlatform)}
tooltip="The end user can't dismiss the OS update once they reach this deadline. Deadline is 12:00 (Noon), the host's local time."
helpText="YYYY-MM-DD format only (e.g., “2024-07-01”)."
value={deadline}
error={deadlineError}