mirror of
https://github.com/umami-software/umami.git
synced 2026-02-13 00:55:37 +01:00
fix team add website overflow bug
This commit is contained in:
parent
500a0cd261
commit
67edc5c092
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ export function TeamWebsiteAddForm({
|
||||||
{isLoading && !hasData && <Loading icon="dots" position="center" />}
|
{isLoading && !hasData && <Loading icon="dots" position="center" />}
|
||||||
{!isLoading && !hasData && <Empty />}
|
{!isLoading && !hasData && <Empty />}
|
||||||
{hasData && (
|
{hasData && (
|
||||||
<Form onSubmit={handleSubmit} error={error}>
|
<Form onSubmit={handleSubmit} error={error} style={{ maxHeight: '70vh', overflow: 'auto' }}>
|
||||||
<WebsitesDataTable userId={user.id} showActions={false}>
|
<WebsitesDataTable userId={user.id} showActions={false}>
|
||||||
<GridColumn name="select" label={formatMessage(labels.selectWebsite)} alignment="end">
|
<GridColumn name="select" label={formatMessage(labels.selectWebsite)} alignment="end">
|
||||||
{row => (
|
{row => (
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue