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

(-)a/koha-tmpl/intranet-tmpl/prog/css/src/staff-global.scss (+4 lines)
Lines 2362-2367 td { Link Here
2362
    display: block;
2362
    display: block;
2363
}
2363
}
2364
2364
2365
td.bundle {
2366
    background-color: #FFC !important;
2367
}
2368
2365
.datedue {
2369
.datedue {
2366
    color: #999;
2370
    color: #999;
2367
    display: block;
2371
    display: block;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-2 / +1 lines)
Lines 1403-1409 Note that permanent location is a code, and location may be an authval. Link Here
1403
                var bundles_table = $('<table class="display tbundle" data-itemnumber="'+itemnumber+'" id="bundle_table_'+itemnumber+'" width="100%"/>');
1403
                var bundles_table = $('<table class="display tbundle" data-itemnumber="'+itemnumber+'" id="bundle_table_'+itemnumber+'" width="100%"/>');
1404
1404
1405
                // Display it the child row
1405
                // Display it the child row
1406
                row.child( bundle_toolbar.add(bundles_table) ).show();
1406
                row.child( bundle_toolbar.add(bundles_table), 'bundle' ).show();
1407
1407
1408
                // Initialise as a DataTable
1408
                // Initialise as a DataTable
1409
                var bundle_table_url = "/api/v1/items/" + itemnumber + "/bundled_items?";
1409
                var bundle_table_url = "/api/v1/items/" + itemnumber + "/bundled_items?";
1410
- 

Return to bug 28854