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 2350-2355 td { Link Here
2350
    display: block;
2350
    display: block;
2351
}
2351
}
2352
2352
2353
td.bundle {
2354
    background-color: #FFC !important;
2355
}
2356
2353
.datedue {
2357
.datedue {
2354
    color: #999;
2358
    color: #999;
2355
    display: block;
2359
    display: block;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-2 / +1 lines)
Lines 1388-1394 Note that permanent location is a code, and location may be an authval. Link Here
1388
                var bundles_table = $('<table class="display tbundle" data-itemnumber="'+itemnumber+'" id="bundle_table_'+itemnumber+'" width="100%"/>');
1388
                var bundles_table = $('<table class="display tbundle" data-itemnumber="'+itemnumber+'" id="bundle_table_'+itemnumber+'" width="100%"/>');
1389
1389
1390
                // Display it the child row
1390
                // Display it the child row
1391
                row.child( bundle_toolbar.add(bundles_table) ).show();
1391
                row.child( bundle_toolbar.add(bundles_table), 'bundle' ).show();
1392
1392
1393
                // Initialise as a DataTable
1393
                // Initialise as a DataTable
1394
                var bundle_table_url = "/api/v1/items/" + itemnumber + "/bundled_items?";
1394
                var bundle_table_url = "/api/v1/items/" + itemnumber + "/bundled_items?";
1395
- 

Return to bug 28854