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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersSummary.vue (-3 / +2 lines)
Lines 100-106 export default { Link Here
100
                        render: function (data, type, row, meta) {
100
                        render: function (data, type, row, meta) {
101
                            const date = row[`earliest_${data_type}`]
101
                            const date = row[`earliest_${data_type}`]
102
                                ? row[`earliest_${data_type}`]
102
                                ? row[`earliest_${data_type}`]
103
                                : this.$__("N/A")
103
                                : __("N/A")
104
                            return date
104
                            return date
105
                        },
105
                        },
106
                    },
106
                    },
Lines 112-118 export default { Link Here
112
                        render: function (data, type, row, meta) {
112
                        render: function (data, type, row, meta) {
113
                            const date = row[`latest_${data_type}`]
113
                            const date = row[`latest_${data_type}`]
114
                                ? row[`latest_${data_type}`]
114
                                ? row[`latest_${data_type}`]
115
                                : this.$__("N/A")
115
                                : __("N/A")
116
                            return date
116
                            return date
117
                        },
117
                        },
118
                    }
118
                    }
119
- 

Return to bug 36836