Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/app/core/services/settings.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,9 @@ export class SettingsService {
}

public setBrowserTabTitle(title: string) {
this.browserTabTitle.next(title);
// Trim before storing so a padded/whitespace-only value isn't persisted (the resolver already
// trims for display; this keeps the saved config clean and blank values normalized to '').
this.browserTabTitle.next((title ?? '').trim());
const appConf = this.buildAppStorageObject();

if (this.useSharedConfig) {
Expand Down
Loading