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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ResourceList.vue (-4 / +3 lines)
Lines 290-298 export default { Link Here
290
            ).map(col => {
290
            ).map(col => {
291
                const filterOptions =
291
                const filterOptions =
292
                    props.instancedResource.tableOptions.filters_options;
292
                    props.instancedResource.tableOptions.filters_options;
293
                const filterRequired = Object.keys(filterOptions).includes(
293
                const filterRequired =
294
                    col.data
294
                    filterOptions &&
295
                );
295
                    Object.keys(filterOptions).includes(col.data);
296
                if (filterRequired) {
296
                if (filterRequired) {
297
                    col.dataFilter = col.data;
297
                    col.dataFilter = col.data;
298
                }
298
                }
299
- 

Return to bug 41354