From 01b7f2088a90c02712a0aa1e3183d66a11733cf4 Mon Sep 17 00:00:00 2001 From: Kyle Le Date: Tue, 13 Jan 2026 00:06:02 +0700 Subject: [PATCH 1/2] Remove loading icon when install new plugin --- app/views/kpm/nodes_info/index.html.erb | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/views/kpm/nodes_info/index.html.erb b/app/views/kpm/nodes_info/index.html.erb index c63161c..0d00f4d 100644 --- a/app/views/kpm/nodes_info/index.html.erb +++ b/app/views/kpm/nodes_info/index.html.erb @@ -116,8 +116,6 @@ $('#nodes-table-wrapper').css({ opacity: 0.5 }); $('#install-in-progress').show(); $('#install-in-progress').children().addClass('fa-spin'); - $('.plugin-link').addClass('loading'); - $('.official-plugin').addClass('loading'); setTimeout(fakeOperationComplete, 6000); <% end %> From 5c35d59f4f9a15eab40cb5fdb777ad6ddc62b787 Mon Sep 17 00:00:00 2001 From: Kyle Le Date: Mon, 26 Jan 2026 00:33:12 +0700 Subject: [PATCH 2/2] Fix issue with mini test version --- Gemfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Gemfile b/Gemfile index 2bbe0d7..8f489d1 100644 --- a/Gemfile +++ b/Gemfile @@ -7,6 +7,10 @@ source 'https://rubygems.org' # development dependencies will be added by default to the :development group. gemspec +# Lock minitest to 5.x until Rails 7.1+ adds Minitest 6.0 support +# Minitest 6.0.0 was released Dec 2024 with breaking API changes +gem 'minitest', '~> 5.0' + # Declare any dependencies that are still in development here instead of in # your gemspec. These might include edge Rails or gems from your path or # Git. Remember to move these dependencies to your gemspec before releasing