mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
Merge remote-tracking branch 'origin/dev' into dev
Some checks failed
Node.js CI / build (postgresql, 18.18) (push) Has been cancelled
Some checks failed
Node.js CI / build (postgresql, 18.18) (push) Has been cancelled
# Conflicts: # src/app/(main)/teams/[teamId]/TeamSettings.tsx
This commit is contained in:
commit
d8075764e2
3 changed files with 5 additions and 2 deletions
|
|
@ -38,7 +38,7 @@ export function TeamMembersTable({
|
|||
}
|
||||
|
||||
return (
|
||||
<Row alignItems="center">
|
||||
<Row alignItems="center" maxHeight="20px">
|
||||
<TeamMemberEditButton teamId={teamId} userId={row?.user?.id} role={row?.role} />
|
||||
<TeamMemberRemoveButton
|
||||
teamId={teamId}
|
||||
|
|
|
|||
|
|
@ -41,6 +41,9 @@ export async function GET(request: Request, { params }: { params: Promise<{ team
|
|||
},
|
||||
},
|
||||
},
|
||||
orderBy: {
|
||||
createdAt: 'asc',
|
||||
},
|
||||
},
|
||||
filters,
|
||||
);
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ export function LoginForm() {
|
|||
setClientAuthToken(token);
|
||||
setUser(user);
|
||||
|
||||
router.push('/dashboard');
|
||||
router.push('/websites');
|
||||
},
|
||||
});
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue