Major update to Apps page. Add instance switcher.

This commit is contained in:
2025-10-22 22:28:02 +00:00
parent 1d2f0b7891
commit 35296b3bd2
11 changed files with 1882 additions and 45 deletions

View File

@@ -37,6 +37,15 @@ export function AppConfigDialog({
if (app && open) {
const initialConfig: Record<string, string> = {};
// Debug logging to diagnose the issue
console.log('[AppConfigDialog] App data:', {
name: app.name,
hasDefaultConfig: !!app.defaultConfig,
defaultConfigKeys: app.defaultConfig ? Object.keys(app.defaultConfig) : [],
hasExistingConfig: !!existingConfig,
existingConfigKeys: existingConfig ? Object.keys(existingConfig) : [],
});
// Start with default config
if (app.defaultConfig) {
Object.entries(app.defaultConfig).forEach(([key, value]) => {