From 2c077907e940ca6cf519e31c344fa4c3de4a3a61 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 11 Feb 2026 22:40:34 -0500 Subject: [PATCH] fix: correct plugin settings registration name and add save button The plugin settings were not showing because the registration name was incorrect. Changed from 'polaris' to 'headlamp-polaris-plugin' (matching package.json name) and added displaySaveButton=true parameter. According to Headlamp plugin API: registerPluginSettings(name, component, displaySaveButton) The name must match the plugin name from package.json. 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 6e11d17..4bd7099 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -66,7 +66,7 @@ registerRoute({ }); // Register plugin settings -registerPluginSettings('polaris', PolarisSettings); +registerPluginSettings('headlamp-polaris-plugin', PolarisSettings, true); // Register details view section for supported controller types registerDetailsViewSection(({ resource }) => { -- 2.52.0