UI: Dynamic window titles including URL

This commit is contained in:
Max Berger
2026-04-22 21:39:02 +02:00
parent ecac9c6ced
commit 66d4827250
12 changed files with 92 additions and 2 deletions

View File

@@ -312,4 +312,10 @@ export class CollectionsScene {
}
is_transient() { return false; }
title_object() {
if (this._principal_collection.displayname && this._principal_collection.displayname.length > 0)
return this._principal_collection.displayname;
else return this._user;
}
}