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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersList.vue (-4 / +4 lines)
Lines 327-344 export default { Link Here
327
                },
327
                },
328
                {
328
                {
329
                    title: __("Status"),
329
                    title: __("Status"),
330
                    data: "active",
330
                    render: function (data, type, row, meta) {
331
                    render: function (data, type, row, meta) {
331
                        const status = row.active ? "Active" : "Inactive";
332
                        const status = row.active ? "Active" : "Inactive";
332
                        return status;
333
                        return status;
333
                    },
334
                    },
334
                    searchable: true,
335
                    searchable: false,
335
                    orderable: true,
336
                    orderable: true,
336
                },
337
                },
337
                {
338
                {
338
                    title: __("Last run"),
339
                    title: __("Last run"),
339
                    data: "last_run",
340
                    data: "last_run",
340
                    searchable: true,
341
                    searchable: false,
341
                    orderable: true,
342
                    orderable: false,
342
                },
343
                },
343
            ];
344
            ];
344
        },
345
        },
345
- 

Return to bug 40198