mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-16 05:45:56 +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 {
|
||||
|
@ -84,6 +84,7 @@ export default function IngestionSettings(): JSX.Element {
|
||||
pagination={false}
|
||||
columns={columns}
|
||||
dataSource={data}
|
||||
bordered
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
|
@ -277,6 +277,7 @@ function AuthDomains(): JSX.Element {
|
||||
rowKey={(record: AuthDomain): string => record.name + v4()}
|
||||
dataSource={!SSOFlag ? notEntripriseData : []}
|
||||
tableLayout="fixed"
|
||||
bordered
|
||||
/>
|
||||
</Space>
|
||||
);
|
||||
@ -327,6 +328,7 @@ function AuthDomains(): JSX.Element {
|
||||
loading={isLoading}
|
||||
tableLayout="fixed"
|
||||
rowKey={(record: AuthDomain): string => record.name + v4()}
|
||||
bordered
|
||||
/>
|
||||
</Space>
|
||||
</>
|
||||
|
@ -320,6 +320,7 @@ function Members(): JSX.Element {
|
||||
dataSource={dataSource}
|
||||
pagination={false}
|
||||
loading={status === 'loading'}
|
||||
bordered
|
||||
/>
|
||||
</Space>
|
||||
);
|
||||
|
@ -299,6 +299,7 @@ function PendingInvitesContainer(): JSX.Element {
|
||||
dataSource={dataSource}
|
||||
pagination={false}
|
||||
loading={getPendingInvitesResponse.status === 'loading'}
|
||||
bordered
|
||||
/>
|
||||
</Space>
|
||||
</div>
|
||||
|
@ -11,7 +11,6 @@
|
||||
gap: 20px;
|
||||
|
||||
.shortcut-section-heading {
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
font-weight: 600;
|
||||
font-size: 22px;
|
||||
line-height: 1.3636363636363635;
|
||||
|
@ -18,6 +18,7 @@ function Shortcuts(): JSX.Element {
|
||||
dataSource={tableData}
|
||||
pagination={false}
|
||||
className="shortcut-section-table"
|
||||
bordered
|
||||
/>
|
||||
</section>
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user