fix: Fixed pinned tabs reseting not using the proper title, b=no-bug, c=tabs

This commit is contained in:
Mr. M
2025-08-02 14:08:55 +02:00
parent d6ca32fe3a
commit 0edf37a239
2 changed files with 4 additions and 2 deletions

View File

@@ -612,7 +612,9 @@
];
} else {
// Remove everything except the entry we want to keep
state.entries = [state.entries[foundEntryIndex]];
const existingEntry = state.entries[foundEntryIndex];
existingEntry.title = pin.title;
state.entries = [existingEntry];
}
state.image = pin.iconUrl || null;
state.index = 0;

View File

@@ -19,7 +19,7 @@
"brandShortName": "Zen",
"brandFullName": "Zen Browser",
"release": {
"displayVersion": "1.14.9b",
"displayVersion": "1.14.10b",
"github": {
"repo": "zen-browser/desktop"
},