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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsList.vue (-2 / +2 lines)
Lines 175-181 export default { Link Here
175
            this.setConfirmationDialog(
175
            this.setConfirmationDialog(
176
                {
176
                {
177
                    title: this.$__(
177
                    title: this.$__(
178
                        "Are you sure you want to delete this agreement?"
178
                        "Are you sure you want to remove this agreement?"
179
                    ),
179
                    ),
180
                    message: agreement.name,
180
                    message: agreement.name,
181
                    accept_label: this.$__("Yes, delete"),
181
                    accept_label: this.$__("Yes, delete"),
Lines 240-246 export default { Link Here
240
                            '<a href="/cgi-bin/koha/erm/agreements/' +
240
                            '<a href="/cgi-bin/koha/erm/agreements/' +
241
                            row.agreement_id +
241
                            row.agreement_id +
242
                            '" class="show">' +
242
                            '" class="show">' +
243
                            escape_str(row.name) +
243
                            escape_str(`${row.name} (#${row.agreement_id})`) +
244
                            "</a>"
244
                            "</a>"
245
                        )
245
                        )
246
                    },
246
                    },
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalPackagesList.vue (-1 / +1 lines)
Lines 170-176 export default { Link Here
170
                            '<a href="/cgi-bin/koha/erm/eholdings/local/packages/' +
170
                            '<a href="/cgi-bin/koha/erm/eholdings/local/packages/' +
171
                            row.package_id +
171
                            row.package_id +
172
                            '" class="show">' +
172
                            '" class="show">' +
173
                            escape_str(row.name) +
173
                            escape_str(`${row.name} (#${row.package_id})`) +
174
                            "</a>"
174
                            "</a>"
175
                        )
175
                        )
176
                    },
176
                    },
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/LicensesList.vue (-2 / +1 lines)
Lines 140-146 export default { Link Here
140
                            '<a href="/cgi-bin/koha/erm/licenses/' +
140
                            '<a href="/cgi-bin/koha/erm/licenses/' +
141
                            row.license_id +
141
                            row.license_id +
142
                            '" class="show">' +
142
                            '" class="show">' +
143
                            escape_str(row.name) +
143
                            escape_str(`${row.name} (#${row.license_id})`) +
144
                            "</a>"
144
                            "</a>"
145
                        )
145
                        )
146
                    },
146
                    },
147
- 

Return to bug 33066