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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersList.vue (-2 / +3 lines)
Lines 329-335 export default { Link Here
329
                    title: __("Status"),
329
                    title: __("Status"),
330
                    data: "active",
330
                    data: "active",
331
                    render: function (data, type, row, meta) {
331
                    render: function (data, type, row, meta) {
332
                        const status = row.active ? "Active" : "Inactive";
332
                        const status = row.active
333
                            ? __("Active")
334
                            : __("Inactive");
333
                        return status;
335
                        return status;
334
                    },
336
                    },
335
                    searchable: false,
337
                    searchable: false,
336
- 

Return to bug 40198