Skip to content
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

FIXED:- Improve Visibility of Status, Role, and Contact numbers on User Management Page List View for Mobile Screens #10419

Merged
merged 4 commits into from
Feb 10, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions src/components/Users/UserListAndCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,7 @@ const UserListHeader = () => {
return (
<thead>
<tr className="bg-gray-50 text-sm font-medium text-gray-500">
<th className="sticky left-0 z-10 bg-gray-50 px-4 py-3 text-left">
{t("name")}
</th>
<th className=" bg-gray-50 px-4 py-3 text-left">{t("name")}</th>
modamaan marked this conversation as resolved.
Show resolved Hide resolved
<th className="w-32 px-10 py-3 text-left">{t("status")}</th>
<th className="px-10 py-3 text-left">{t("role")}</th>
<th className="px-4 py-3 text-left">{t("contact_number")}</th>
Expand All @@ -151,7 +149,7 @@ const UserListRow = ({ user }: { user: UserBase }) => {
id={`usr_${user.id}`}
className="hover:bg-gray-50"
>
<td className="sticky left-0 z-10 bg-white px-4 py-4 lg:pr-20">
<td className="px-4 py-4 lg:pr-20">
<div className="flex items-center gap-3">
<Avatar
// TO do: adjust for facility users
Expand Down
Loading