Skip to content

Commit

Permalink
Merge pull request #133 from sinamics/table_bkg
Browse files Browse the repository at this point in the history
Added more transparent red color when user is not authorized
  • Loading branch information
sinamics authored Sep 9, 2023
2 parents 73f5f21 + 1547209 commit c4f9997
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/modules/table/networkMembersTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,7 @@ export const NetworkMembersTable = ({ nwid, central = false }: IProp) => {
key={row.original.id}
className={`items-center ${
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-assignment
!row.original.authorized
? "border-dotted bg-error bg-opacity-20"
: ""
!row.original.authorized ? "border-dotted bg-red-400/10" : ""
}`}
style={
!central &&
Expand Down

0 comments on commit c4f9997

Please sign in to comment.