diff --git a/changelog.md b/changelog.md index eaa5914..63678df 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2025-11-27 - 1.9.1 - fix(ui) +Correct import success toast and add VS Code launch/tasks recommendations for the UI + +- Fix backup import success toast in backups-tab.component to reference response.data.service.name (previously response.data.serviceName), preventing incorrect service name display. +- Add VS Code workspace settings for the UI: extensions recommendation, launch configurations for 'ng serve' and 'ng test', and npm tasks for start/test to simplify local development and debugging. + ## 2025-11-27 - 1.9.0 - feat(backups) Add backup import API and improve backup download/import flow in UI diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 9fe359d..4c7e87f 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/onebox', - version: '1.9.0', + version: '1.9.1', description: 'Self-hosted container platform with automatic SSL and DNS - a mini Heroku for single servers' } diff --git a/ui/src/app/features/services/backups-tab.component.ts b/ui/src/app/features/services/backups-tab.component.ts index 113d5ac..679afdd 100644 --- a/ui/src/app/features/services/backups-tab.component.ts +++ b/ui/src/app/features/services/backups-tab.component.ts @@ -1027,7 +1027,7 @@ export class BackupsTabComponent implements OnInit { } if (response.success && response.data) { - this.toast.success(`Service "${response.data.serviceName}" imported successfully`); + this.toast.success(`Service "${response.data.service.name}" imported successfully`); this.closeImportDialog(); // Navigate to the services list to see the new service this.router.navigate(['/services']);