mirror of
https://github.com/zen-browser/desktop.git
synced 2026-03-06 00:37:03 +00:00
This commit addresses an issue where renaming a pinned tab wouldn't update the title stored in `ZenPinnedTabsStorage`. The following changes were made: - Modified `ZenUIManager.mjs` to asynchronously call `ZenPinnedTabsStorage.updatePinTitle` when a tab is renamed via the keyboard. This ensures the stored title is synchronized with the displayed title. - Added the `updatePinTitle` function to `ZenPinnedTabsStorage.mjs`. This function updates the title of a zen pin within the database. This ensures consistency between the tab title displayed in the UI and the title stored for pinned tabs.