Bugzilla – Attachment 162595 Details for
Bug 35919
Add record sources CRUD
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35919: Fix edit route to match existing ones
Bug-35919-Fix-edit-route-to-match-existing-ones.patch (text/plain), 1.73 KB, created by
Jonathan Druart
on 2024-02-29 13:00:07 UTC
(
hide
)
Description:
Bug 35919: Fix edit route to match existing ones
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2024-02-29 13:00:07 UTC
Size:
1.73 KB
patch
obsolete
>From 4fe98f00a1f2707a59adeb69b68937bccde41105 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 29 Feb 2024 13:59:36 +0100 >Subject: [PATCH] Bug 35919: Fix edit route to match existing ones > >--- > .../prog/js/vue/components/Admin/RecordSources/List.vue | 2 +- > .../intranet-tmpl/prog/js/vue/routes/admin/record_sources.js | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Admin/RecordSources/List.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Admin/RecordSources/List.vue >index ad9271ad1be..80f6268f225 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Admin/RecordSources/List.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Admin/RecordSources/List.vue >@@ -94,7 +94,7 @@ export default { > }, > doEdit(data) { > this.$router.push({ >- path: `record_sources/${data.record_source_id}`, >+ path: `record_sources/edit/${data.record_source_id}`, > props: { > data, > }, >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/routes/admin/record_sources.js b/koha-tmpl/intranet-tmpl/prog/js/vue/routes/admin/record_sources.js >index 49833980c69..ceac79d6c11 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/routes/admin/record_sources.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/routes/admin/record_sources.js >@@ -30,7 +30,7 @@ export default { > }, > { > title: $__("Edit record source"), >- path: ":id", >+ path: "edit/:id", > name: "Edit", > component: markRaw(Edit), > }, >-- >2.34.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 35919
:
161531
|
161532
|
161533
|
161534
|
161535
|
161537
|
161538
|
161577
|
161578
|
161579
|
161580
|
161581
|
161582
|
161583
|
162489
|
162594
|
162595
|
162596
|
162599
|
163348
|
163349
|
163350
|
163351
|
163352
|
163353
|
163354
|
163355
|
163360
|
163369
|
163389
|
163390
|
163391
|
163392
|
163393
|
163394
|
163395
|
163396
|
163397
|
163398
|
163399
|
163400
|
164708
|
164709
|
164710
|
164711
|
164712
|
164713
|
164714
|
164715
|
164716
|
164717
|
165274