feat: add borders to keyboard shortcut and settings tables (#4545)

This commit is contained in:
Yunus M 2024-02-14 15:27:01 +05:30 committed by GitHub
parent 81241170e5
commit bd4786f128
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 9 additions and 2 deletions

View File

@ -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 {

View File

@ -84,6 +84,7 @@ export default function IngestionSettings(): JSX.Element {
pagination={false}
columns={columns}
dataSource={data}
bordered
/>
</div>
);

View File

@ -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>
</>

View File

@ -320,6 +320,7 @@ function Members(): JSX.Element {
dataSource={dataSource}
pagination={false}
loading={status === 'loading'}
bordered
/>
</Space>
);

View File

@ -299,6 +299,7 @@ function PendingInvitesContainer(): JSX.Element {
dataSource={dataSource}
pagination={false}
loading={getPendingInvitesResponse.status === 'loading'}
bordered
/>
</Space>
</div>

View File

@ -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;

View File

@ -18,6 +18,7 @@ function Shortcuts(): JSX.Element {
dataSource={tableData}
pagination={false}
className="shortcut-section-table"
bordered
/>
</section>
);