From b9d718b1fe303de64309e96c26ca63edeaf52103 Mon Sep 17 00:00:00 2001 From: Hugh Hackman Date: Tue, 17 Mar 2026 17:48:51 +0000 Subject: [PATCH] fix: use package name for registerPluginSettings, not directory name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Headlamp identifies plugins by their package.json name (headlamp-polaris), not the deploy directory name (polaris). The previous commit incorrectly changed this to 'polaris', causing the settings component to never render in the plugin settings page — breaking all 5 E2E settings tests. Co-Authored-By: Paperclip --- src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index e5d068f..5a90bbe 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -99,7 +99,7 @@ registerRoute({ }); // Register plugin settings -registerPluginSettings('polaris', PolarisSettings, true); +registerPluginSettings('headlamp-polaris', PolarisSettings, true); // Register details view section for supported controller types registerDetailsViewSection(({ resource }) => {