View | Details | Raw Unified | Return to bug 39710
Collapse All | Expand All

(-)a/api/v1/swagger/definitions/hold.yaml (-1 / +3 lines)
Lines 14-20 properties: Link Here
14
    format: date
14
    format: date
15
    description: The date the hold was placed
15
    description: The date the hold was placed
16
  biblio_id:
16
  biblio_id:
17
    type: integer
17
    type:
18
      - integer
19
      - "null"
18
    description: Internal biblio identifier
20
    description: Internal biblio identifier
19
  deleted_biblio_id:
21
  deleted_biblio_id:
20
    type:
22
    type:
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/holdshistory.tt (-2 / +1 lines)
Lines 222-228 Link Here
222
                            searchable: true,
222
                            searchable: true,
223
                            orderable: true,
223
                            orderable: true,
224
                            render: function (data, type, row, meta) {
224
                            render: function (data, type, row, meta) {
225
                                return row.biblio.author;
225
                                return row.biblio ? row.biblio.author : "" ;
226
                            }
226
                            }
227
                        },
227
                        },
228
                        {
228
                        {
229
- 

Return to bug 39710