mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-18 02:35:57 +08:00
feat: add borders to keyboard shortcut and settings tables (#4545)
This commit is contained in:
parent
81241170e5
commit
bd4786f128
@ -64,7 +64,9 @@ function AlertChannels({ allChannels }: AlertChannelsProps): JSX.Element {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return <ResizeTable columns={columns} dataSource={channels} rowKey="id" />;
|
return (
|
||||||
|
<ResizeTable columns={columns} dataSource={channels} rowKey="id" bordered />
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
interface AlertChannelsProps {
|
interface AlertChannelsProps {
|
||||||
|
@ -84,6 +84,7 @@ export default function IngestionSettings(): JSX.Element {
|
|||||||
pagination={false}
|
pagination={false}
|
||||||
columns={columns}
|
columns={columns}
|
||||||
dataSource={data}
|
dataSource={data}
|
||||||
|
bordered
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -277,6 +277,7 @@ function AuthDomains(): JSX.Element {
|
|||||||
rowKey={(record: AuthDomain): string => record.name + v4()}
|
rowKey={(record: AuthDomain): string => record.name + v4()}
|
||||||
dataSource={!SSOFlag ? notEntripriseData : []}
|
dataSource={!SSOFlag ? notEntripriseData : []}
|
||||||
tableLayout="fixed"
|
tableLayout="fixed"
|
||||||
|
bordered
|
||||||
/>
|
/>
|
||||||
</Space>
|
</Space>
|
||||||
);
|
);
|
||||||
@ -327,6 +328,7 @@ function AuthDomains(): JSX.Element {
|
|||||||
loading={isLoading}
|
loading={isLoading}
|
||||||
tableLayout="fixed"
|
tableLayout="fixed"
|
||||||
rowKey={(record: AuthDomain): string => record.name + v4()}
|
rowKey={(record: AuthDomain): string => record.name + v4()}
|
||||||
|
bordered
|
||||||
/>
|
/>
|
||||||
</Space>
|
</Space>
|
||||||
</>
|
</>
|
||||||
|
@ -320,6 +320,7 @@ function Members(): JSX.Element {
|
|||||||
dataSource={dataSource}
|
dataSource={dataSource}
|
||||||
pagination={false}
|
pagination={false}
|
||||||
loading={status === 'loading'}
|
loading={status === 'loading'}
|
||||||
|
bordered
|
||||||
/>
|
/>
|
||||||
</Space>
|
</Space>
|
||||||
);
|
);
|
||||||
|
@ -299,6 +299,7 @@ function PendingInvitesContainer(): JSX.Element {
|
|||||||
dataSource={dataSource}
|
dataSource={dataSource}
|
||||||
pagination={false}
|
pagination={false}
|
||||||
loading={getPendingInvitesResponse.status === 'loading'}
|
loading={getPendingInvitesResponse.status === 'loading'}
|
||||||
|
bordered
|
||||||
/>
|
/>
|
||||||
</Space>
|
</Space>
|
||||||
</div>
|
</div>
|
||||||
|
@ -11,7 +11,6 @@
|
|||||||
gap: 20px;
|
gap: 20px;
|
||||||
|
|
||||||
.shortcut-section-heading {
|
.shortcut-section-heading {
|
||||||
color: rgba(255, 255, 255, 0.85);
|
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
font-size: 22px;
|
font-size: 22px;
|
||||||
line-height: 1.3636363636363635;
|
line-height: 1.3636363636363635;
|
||||||
|
@ -18,6 +18,7 @@ function Shortcuts(): JSX.Element {
|
|||||||
dataSource={tableData}
|
dataSource={tableData}
|
||||||
pagination={false}
|
pagination={false}
|
||||||
className="shortcut-section-table"
|
className="shortcut-section-table"
|
||||||
|
bordered
|
||||||
/>
|
/>
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user