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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersList.vue (-2 / +2 lines)
Lines 80-87 export default { Link Here
80
                    data: "active",
80
                    data: "active",
81
                    render: function (data, type, row, meta) {
81
                    render: function (data, type, row, meta) {
82
                        const status = row.active
82
                        const status = row.active
83
                            ? __("Active")
83
                            ? $__("Active")
84
                            : __("Inactive");
84
                            : $__("Inactive");
85
                        return status;
85
                        return status;
86
                    },
86
                    },
87
                    searchable: false,
87
                    searchable: false,
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorResource.vue (-3 / +2 lines)
Lines 638-644 export default { Link Here
638
                                          )
638
                                          )
639
                                      ) +
639
                                      ) +
640
                                      "</a>"
640
                                      "</a>"
641
                                : escape_str(__("No baskets"));
641
                                : escape_str($__("No baskets"));
642
                        },
642
                        },
643
                    },
643
                    },
644
                    hideIn: ["Show", "Form"],
644
                    hideIn: ["Show", "Form"],
Lines 662-668 export default { Link Here
662
                                          )
662
                                          )
663
                                      ) +
663
                                      ) +
664
                                      "</a>"
664
                                      "</a>"
665
                                : escape_str(__("No subscriptions"));
665
                                : escape_str($__("No subscriptions"));
666
                        },
666
                        },
667
                    },
667
                    },
668
                    hideIn: ["Show", "Form"],
668
                    hideIn: ["Show", "Form"],
669
- 

Return to bug 38201