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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsFormAdd.vue (+9 lines)
Lines 318-323 export default { Link Here
318
                    )
318
                    )
319
                )
319
                )
320
            }
320
            }
321
            agreement.user_roles.forEach((user, i) => {
322
                if (user.patron_str === "") {
323
                    errors.push(
324
                        this.$__("Agreement user %s is missing a user").format(
325
                            i + 1
326
                        )
327
                    )
328
                }
329
            })
321
            errors.forEach(function (e) {
330
            errors.forEach(function (e) {
322
                setWarning(e)
331
                setWarning(e)
323
            })
332
            })
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/LicensesFormAdd.vue (-1 / +9 lines)
Lines 224-229 export default { Link Here
224
                    )
224
                    )
225
                )
225
                )
226
            }
226
            }
227
            license.user_roles.forEach((user, i) => {
228
                if (user.patron_str === "") {
229
                    errors.push(
230
                        this.$__("License user %s is missing a user").format(
231
                            i + 1
232
                        )
233
                    )
234
                }
235
            })
227
            errors.forEach(function (e) {
236
            errors.forEach(function (e) {
228
                setWarning(e)
237
                setWarning(e)
229
            })
238
            })
230
- 

Return to bug 33354