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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ResourceList.vue (-3 / +2 lines)
Lines 103-111 export default { Link Here
103
            let columnActions = thisResource.tableOptions.actions;
103
            let columnActions = thisResource.tableOptions.actions;
104
104
105
            const columns = resourceAttrs.reduce((acc, attr, i) => {
105
            const columns = resourceAttrs.reduce((acc, attr, i) => {
106
                const shouldFieldBeHidden = attr.hideIn && typeof attr.hideIn === "function" ? attr.hideIn() : attr.hideIn
106
                if (
107
                if (
107
                    attr.hasOwnProperty("hideIn") &&
108
                    shouldFieldBeHidden && shouldFieldBeHidden.includes("List")
108
                    attr.hideIn.includes("List")
109
                )
109
                )
110
                    return acc;
110
                    return acc;
111
                if (
111
                if (
112
- 

Return to bug 41214