Skip to content

Commit

Permalink
fix loader size
Browse files Browse the repository at this point in the history
  • Loading branch information
saroojbkhari committed Jul 10, 2023
1 parent e0cdb00 commit 017c204
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -467,4 +467,9 @@ ul.ant-list-items {

.style-like-text .ant-select-arrow {
display: none !important;
}


.ant-spin-nested-loading .ant-spin-spinning {
min-height: 300px;
}
1 change: 1 addition & 0 deletions src/views/AccessControl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -722,6 +722,7 @@ export const AccessControl = () => {
}`}
showSorterTooltip={false}
scroll={{ x: true }}
style={{ minHeight: "300px" }}
loading={tableSpin(loading)}
dataSource={dataTable}
>
Expand Down
1 change: 1 addition & 0 deletions src/views/Nameservers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,7 @@ export const Nameservers = () => {
}`}
showSorterTooltip={false}
scroll={{ x: true }}
style={{ minHeight: "300px" }}
loading={tableSpin(loading)}
dataSource={dataTable}
>
Expand Down
1 change: 1 addition & 0 deletions src/views/Peers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -707,6 +707,7 @@ export const Peers = () => {
scroll={{ x: true }}
loading={tableSpin(loading)}
dataSource={dataTable}
style={{ minHeight: "300px" }}
>
<Column
title="Name"
Expand Down
1 change: 1 addition & 0 deletions src/views/Routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,7 @@ export const SetupKeys = () => {
className="card-table"
showSorterTooltip={false}
scroll={{ x: true }}
style={{ minHeight: "300px" }}
loading={tableSpin(loading)}
dataSource={dataTable}
>
Expand Down
1 change: 1 addition & 0 deletions src/views/SetupKeys.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -519,6 +519,7 @@ export const SetupKeys = () => {
scroll={{ x: true }}
loading={tableSpin(loading)}
dataSource={dataTable}
style={{ minHeight: "300px" }}
>
<Column
title="Name"
Expand Down

0 comments on commit 017c204

Please sign in to comment.