Bugzilla – Attachment 182325 Details for
Bug 39838
Vendor alias object under specified
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39838: Fix uses of `alias_id`
Bug-39838-Fix-uses-of-aliasid.patch (text/plain), 1.69 KB, created by
Martin Renvoize (ashimema)
on 2025-05-13 06:31:58 UTC
(
hide
)
Description:
Bug 39838: Fix uses of `alias_id`
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2025-05-13 06:31:58 UTC
Size:
1.69 KB
patch
obsolete
>From 656f2efdc545993f2e6ccd99d23b8beead842096 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Mon, 5 May 2025 14:58:49 -0300 >Subject: [PATCH] Bug 39838: Fix uses of `alias_id` > >Signed-off-by: David Nind <david@davidnind.com> >Signed-off-by: Martin Renvoize <martin.renvoize@openfifth.co.uk> >--- > .../prog/js/vue/components/Vendors/VendorDetails.vue | 2 +- > t/cypress/support/e2e.js | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorDetails.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorDetails.vue >index 63034ce5e7b..81f5099685c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorDetails.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorDetails.vue >@@ -65,7 +65,7 @@ > <ul style="margin-left: 8rem"> > <li > v-for="(alias, i) in vendor.aliases" >- :key="alias.alias_id" >+ :key="alias.vendor_alias_id" > > > {{ $__("Alias") + " " + (i + 1) }}: {{ alias.alias }} > </li> >diff --git a/t/cypress/support/e2e.js b/t/cypress/support/e2e.js >index cfe78928eee..b94cc0637af 100644 >--- a/t/cypress/support/e2e.js >+++ b/t/cypress/support/e2e.js >@@ -1355,7 +1355,7 @@ cy.get_vendors_to_relate = () => { > { > id: 2, > name: "My Vendor 2", >- aliases: [{ alias: "alias", alias_id: 1, vendor_id: 2 }], >+ aliases: [{ alias: "alias", vendor_alias_id: 1, vendor_id: 2 }], > }, > ]; > }; >-- >2.49.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 39838
:
181932
|
181933
|
181934
|
181935
|
181936
|
182320
|
182321
|
182322
|
182323
|
182324
| 182325