[backport v2.7.patch1] Resolve issues with user last login fields #11091
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is an automated request to port PR #11078 by @rak-phillip
Original PR body:
Summary
This addresses several issues identified with new Login fields added to the users table
Fixes #11074
Fixes #11071
Technical notes summary
I originally attempted to expose the live date components through the cell slots for the table, but I found that the
LiveDate
component no longer works with this change. It appears thatLiveDate
is receiving updates via the prop on a regular basis while rendering from within the table, but that relationship is broken when data is exposed through a slot. I opted to add a new prop to theLiveDate
component, but we can also consider creating a new component to handle a countdown like this if we would prefer.Areas or cases that should be tested
Set a short time (2 minutes) for disable/delete after. Watch the timer countdown.
Alternatively, disable a user before the countdown reaches zero.
Checklist