Skip to content

Commit

Permalink
bookings table fixes + adjustments to buggy code
Browse files Browse the repository at this point in the history
  • Loading branch information
DonKoko committed Jul 24, 2024
1 parent 1532c62 commit 97e85d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/routes/_layout+/bookings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ const ListAssetContent = ({
<>
{/* Item */}
<Td className="w-full min-w-52 whitespace-normal p-0 md:p-0">
<div className="flex justify-between gap-3 py-4 pr-4 md:justify-normal md:pr-6">
<div className="flex justify-between gap-3 p-4 md:justify-normal md:px-6">
<div className="flex items-center gap-3">
<div className="min-w-[130px]">
<span className="word-break mb-1 block font-medium">
Expand Down
2 changes: 1 addition & 1 deletion app/utils/roles.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export async function requirePermission({
role,
isSelfServiceOrBase:
role === OrganizationRoles.SELF_SERVICE ||
role === OrganizationRoles.ADMIN,
role === OrganizationRoles.BASE,
};
}

Expand Down

0 comments on commit 97e85d2

Please sign in to comment.