Bugzilla – Attachment 184585 Details for
Bug 40198
Datatables search for data providers is broken
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 40198: Fix translatability issue for Active and Inactive
Bug-40198-Fix-translatability-issue-for-Active-and.patch (text/plain), 1.28 KB, created by
Jonathan Druart
on 2025-07-24 10:23:42 UTC
(
hide
)
Description:
Bug 40198: Fix translatability issue for Active and Inactive
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2025-07-24 10:23:42 UTC
Size:
1.28 KB
patch
obsolete
>From 374eba5bc1eacd66a9d3d38d6038a254e6990a1e Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Thu, 24 Jul 2025 12:23:26 +0200 >Subject: [PATCH] Bug 40198: Fix translatability issue for Active and Inactive > >--- > .../vue/components/ERM/UsageStatisticsDataProvidersList.vue | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersList.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersList.vue >index 0af9239ea73..84bf57c7671 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersList.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersList.vue >@@ -329,7 +329,9 @@ export default { > title: __("Status"), > data: "active", > render: function (data, type, row, meta) { >- const status = row.active ? "Active" : "Inactive"; >+ const status = row.active >+ ? __("Active") >+ : __("Inactive"); > return status; > }, > searchable: false, >-- >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 40198
:
184584
|
184585
|
184592
|
184593
|
184620
|
184621