Browse Source

fix bug

master
Anna Ho 1 year ago
parent
commit
09eeaf72d4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/pages/DemandNote/Create/DataGrid.js

+ 1
- 1
src/pages/DemandNote/Create/DataGrid.js View File

@@ -103,7 +103,7 @@ export default function SearchPublicNoticeTable({ searchCriteria, setPaymentCoun
customPageSize={10} customPageSize={10}
onRowDoubleClick={handleEditClick} onRowDoubleClick={handleEditClick}
doLoad={{ doLoad={{
url: UrlUtils.DEMAND_NOTE_PREVIEW + "/" + _searchCriteria.issueId,
url: _searchCriteria.issueId>0?UrlUtils.DEMAND_NOTE_PREVIEW + "/" + _searchCriteria.issueId:null,
params: {}, params: {},
callback: (responseData) => { callback: (responseData) => {
setPaymentCount(responseData.paymentCount); setPaymentCount(responseData.paymentCount);


Loading…
Cancel
Save