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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/KohaTable.vue (-9 / +1 lines)
Lines 22-34 DataTable.use(DataTablesLib) Link Here
22
export default {
22
export default {
23
    name: "KohaTable",
23
    name: "KohaTable",
24
    data() {
24
    data() {
25
        let hidden_ids, included_ids
26
        ;[hidden_ids, included_ids] = _dt_visibility(
27
            this.table_settings,
28
            this.options
29
        )
30
        let buttons = _dt_buttons({
25
        let buttons = _dt_buttons({
31
            included_ids,
26
            settings: this.options,
32
            table_settings: this.table_settings,
27
            table_settings: this.table_settings,
33
        })
28
        })
34
29
Lines 91-98 export default { Link Here
91
                ],
86
                ],
92
                ...this.options,
87
                ...this.options,
93
            },
88
            },
94
            hidden_ids,
95
            included_ids,
96
        }
89
        }
97
    },
90
    },
98
    setup() {
91
    setup() {
99
- 

Return to bug 38436