-
Notifications
You must be signed in to change notification settings - Fork 782
small FE fixes to align with test plan and Figma #37985
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 5 commits
e70928a
fe529bf
9b9aaaf
df2ec33
92a27ce
8d8ebe2
d44f7ce
0b14f13
69aca0e
37fc505
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1285,7 +1285,13 @@ Observer plus must be checked against host's team id */ | |
| showRefetchSpinner={showRefetchSpinner} | ||
| onRefetchHost={onRefetchHost} | ||
| renderActionsDropdown={renderActionsDropdown} | ||
| hostMdmDeviceStatus={hostMdmDeviceStatus} | ||
| // Setting this to "locking" because if a host is "locating", it is also | ||
| // "locking"; an iOS/iPadOS host isn't "locked" until the location is found. | ||
| hostMdmDeviceStatus={ | ||
| hostMdmDeviceStatus === "locating" | ||
| ? "locking" | ||
| : hostMdmDeviceStatus | ||
| } | ||
| hostMdmEnrollmentStatus={host.mdm?.enrollment_status || undefined} | ||
| /> | ||
| </div> | ||
|
|
@@ -1687,7 +1693,7 @@ Observer plus must be checked against host's team id */ | |
| }} | ||
| onClickLock={() => { | ||
| setShowLockHostModal(true); | ||
| setShowLocationModal(undefined); | ||
| setShowLocationModal(false); | ||
|
||
| }} | ||
| detailsUpdatedAt={host.detail_updated_at} | ||
| /> | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.