From 5adcca2eb94ef130bf702d731afb9cce4dd5a212 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Thu, 12 Feb 2026 10:32:13 -0500 Subject: [PATCH] fix: plugin settings name must match package.json Changed registerPluginSettings from 'headlamp-polaris-plugin' to 'polaris' to match package.json name field. Headlamp requires exact match for settings registration, otherwise settings page renders blank. Root cause: When package.json was renamed to 'polaris' in PR #9, the settings registration was not updated. Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude Co-Authored-By: Happy --- src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index 00f8100..e4ec33d 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -66,7 +66,7 @@ registerRoute({ }); // Register plugin settings -registerPluginSettings('headlamp-polaris-plugin', PolarisSettings, true); +registerPluginSettings('polaris', PolarisSettings, true); // Register details view section for supported controller types registerDetailsViewSection(({ resource }) => {