mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-04 04:39:03 +00:00
tabs: fallback if text name is undefined
This commit is contained in:
parent
2a20d67be2
commit
eb3aa26220
@ -168,7 +168,7 @@ these include:
|
||||
| new tab keybinding | [accelerator](https://github.com/electron/electron/blob/master/docs/api/accelerator.md) input | `CommandOrControl+T` |
|
||||
| close tab keybinding | [accelerator](https://github.com/electron/electron/blob/master/docs/api/accelerator.md) input | `CommandOrControl+W` |
|
||||
|
||||

|
||||

|
||||
|
||||
### tweaks
|
||||
|
||||
|
@ -387,7 +387,7 @@ module.exports = (store, __exports) => {
|
||||
title =
|
||||
(this.state.tabs.get(+id).emoji
|
||||
? `${this.state.tabs.get(+id).emoji} `
|
||||
: '') + this.state.tabs.get(+id).text;
|
||||
: '') + (this.state.tabs.get(+id).text || 'Notion Desktop');
|
||||
if (electronWindow && electronWindow.getTitle() !== title)
|
||||
electronWindow.setTitle(title);
|
||||
}
|
||||
@ -439,7 +439,7 @@ module.exports = (store, __exports) => {
|
||||
const electronWindow = electron.remote.getCurrentWindow(),
|
||||
title =
|
||||
(event.args[0].emoji ? `${event.args[0].emoji} ` : '') +
|
||||
event.args[0].text;
|
||||
(event.args[0].text || 'Notion Desktop');
|
||||
if (
|
||||
event.target.id == this.views.current.id &&
|
||||
electronWindow.getTitle() !== title
|
||||
@ -749,7 +749,7 @@ module.exports = (store, __exports) => {
|
||||
},
|
||||
React.createElement('span', {
|
||||
dangerouslySetInnerHTML: {
|
||||
__html: (title.img || '') + title.text,
|
||||
__html: (title.img || '') + (title.text || 'notion.so'),
|
||||
},
|
||||
}),
|
||||
React.createElement(
|
||||
|
Loading…
Reference in New Issue
Block a user