Browse Source

height => minHeight

master
Anna Ho 1 year ago
parent
commit
b6d1701ce2
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      src/pages/Payment/Search_GLD/DataGrid.js
  2. +1
    -1
      src/pages/Payment/Search_Public/DataGrid.js
  3. +1
    -1
      src/pages/PublicNotice/ListPanel/PendingPaymentTab.js

+ 1
- 1
src/pages/Payment/Search_GLD/DataGrid.js View File

@@ -87,7 +87,7 @@ export default function SearchPublicNoticeTable({ recordList }) {
];

return (
<div style={{ height: 400, width: '100%' }}>
<div style={{ minHeight:400, width: '100%' }}>

<FiDataGrid
sx={_sx}


+ 1
- 1
src/pages/Payment/Search_Public/DataGrid.js View File

@@ -87,7 +87,7 @@ export default function SearchPublicNoticeTable({ recordList }) {
];

return (
<div style={{ height: 400, width: '100%' }}>
<div style={{ minHeight: 400, width: '100%' }}>

<FiDataGrid
sx={_sx}


+ 1
- 1
src/pages/PublicNotice/ListPanel/PendingPaymentTab.js View File

@@ -144,7 +144,7 @@ export default function SubmittedTab({ rows }) {

return (
<>
<div style={{ height: 400, width: '100%', padding: 4 }}>
<div style={{ minHeight: 400, width: '100%', padding: 4 }}>
<FiDataGrid
checkboxSelection
disableRowSelectionOnClick


Loading…
Cancel
Save