From 56f4dfbf529ad07329aceb95bfb24003d8387aef Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Thu, 23 Oct 2025 15:33:03 +0000 Subject: [PATCH] Bug 39320: (QA follow-up): Remove big 'Processing...' when loading table widgets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This prevents the big centered 'Processing...' from showing when moving widgets around the dashboard. Keeps the 'Loading...' at the widget level for table widgets, same as any other widget. Signed-off-by: Tomás Cohen Arazi --- .../components/ModuleDashboard/Widgets/ERMLatestSUSHIJobs.vue | 1 + .../ModuleDashboard/Widgets/ERMLicensesNeedingAction.vue | 1 + 2 files changed, 2 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ModuleDashboard/Widgets/ERMLatestSUSHIJobs.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ModuleDashboard/Widgets/ERMLatestSUSHIJobs.vue index 7ee56032d2f..fa8e05d4356 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ModuleDashboard/Widgets/ERMLatestSUSHIJobs.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ModuleDashboard/Widgets/ERMLatestSUSHIJobs.vue @@ -108,6 +108,7 @@ export default { dom: "t", pageLength: 5, order: [2, "desc"], + processing: false, }, url: "/api/v1/jobs", default_filters: { diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ModuleDashboard/Widgets/ERMLicensesNeedingAction.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ModuleDashboard/Widgets/ERMLicensesNeedingAction.vue index 17096c5f8c2..9cf1832cbdd 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ModuleDashboard/Widgets/ERMLicensesNeedingAction.vue +++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/ModuleDashboard/Widgets/ERMLicensesNeedingAction.vue @@ -180,6 +180,7 @@ export default { dom: "t", embed: "vendor,extended_attributes,+strings", pageLength: settings.value.per_page || 5, + processing: false, }, url: "/api/v1/erm/licenses", default_filters: settingsToQueryParams(settings.value), -- 2.51.2