Bugzilla – Attachment 152231 Details for
Bug 32932
Re-structure Vue router-links to use "name" instead of urls
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 32932: Fix resource_id param for EHoldingsLocalResourcesShow
Bug-32932-Fix-resourceid-param-for-EHoldingsLocalR.patch (text/plain), 1.39 KB, created by
Jonathan Druart
on 2023-06-09 07:38:16 UTC
(
hide
)
Description:
Bug 32932: Fix resource_id param for EHoldingsLocalResourcesShow
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2023-06-09 07:38:16 UTC
Size:
1.39 KB
patch
obsolete
>From e39b4d4d0fe14f31a966c857ab3abc4dfb614ad6 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Fri, 9 Jun 2023 09:37:39 +0200 >Subject: [PATCH] Bug 32932: Fix resource_id param for > EHoldingsLocalResourcesShow > >Caught by cypress tests "ReferenceError: resource_id is not defined" in "Show title". >--- > .../js/vue/components/ERM/EHoldingsLocalTitlePackagesList.vue | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlePackagesList.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlePackagesList.vue >index 91ab7732a9f..0ccecdb5d23 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlePackagesList.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlePackagesList.vue >@@ -63,7 +63,7 @@ export default { > if (!row) return // Happen if the table is empty > let { href } = router.resolve({ > name: "EHoldingsLocalResourcesShow", >- params: { resource_id }, >+ params: { resource_id: row.resource_id }, > }) > let n = createVNode( > "a", >-- >2.25.1
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 32932
:
146439
|
146442
|
146616
|
146617
|
146618
|
146624
|
146625
|
146965
|
146966
|
146967
|
146968
|
147119
|
147120
|
147121
|
147122
|
148115
|
148551
|
148552
|
148553
|
148554
|
148558
|
148559
|
148560
|
148561
|
149210
|
149707
|
149709
|
149934
|
149935
|
151529
| 152231