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

(-)a/t/cypress/integration/KohaTable/PatronSearch_spec.ts (-2 / +1 lines)
Lines 147-153 describe("Filters", () => { Link Here
147
147
148
            cy.window().then(win => {
148
            cy.window().then(win => {
149
                win.categories_map = patrons.reduce((map, p) => {
149
                win.categories_map = patrons.reduce((map, p) => {
150
                    map[p.category_id] = p.category_id;
150
                    map[p.category_id.toLowerCase()] = p.category_id;
151
                    return map;
151
                    return map;
152
                }, {});
152
                }, {});
153
            });
153
            });
154
- 

Return to bug 40121