mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
fix update of window title during note renaming
This commit is contained in:
parent
504b2e2c4a
commit
d49cae9cea
6
package-lock.json
generated
6
package-lock.json
generated
@ -2820,9 +2820,9 @@
|
|||||||
"integrity": "sha512-PcW2a0tyTuPHz3tWyYqtK6r1fZ3gp+3Sop8Ph+ZYN81Ob5rwmbHEzaqs10N3BEsaGTkh/ooniXK+WwszGlc2+Q=="
|
"integrity": "sha512-PcW2a0tyTuPHz3tWyYqtK6r1fZ3gp+3Sop8Ph+ZYN81Ob5rwmbHEzaqs10N3BEsaGTkh/ooniXK+WwszGlc2+Q=="
|
||||||
},
|
},
|
||||||
"electron": {
|
"electron": {
|
||||||
"version": "6.0.0-beta.9",
|
"version": "6.0.0-beta.10",
|
||||||
"resolved": "https://registry.npmjs.org/electron/-/electron-6.0.0-beta.9.tgz",
|
"resolved": "https://registry.npmjs.org/electron/-/electron-6.0.0-beta.10.tgz",
|
||||||
"integrity": "sha512-tbBpSamFzD1ayJhF+sUo56e7qD+djdMOPh8B0iA0C10pYbi0HUSEH1EOLtB+UMWU3wkc8QOCMWcgz7wze1w6QQ==",
|
"integrity": "sha512-eKDUv5ZZGjFE2ccBQzBpY6j3oT1NvnHGLcSoGXp6vCWkx+ZYjPyujwG3gW61FK7iL5FMKyg9IlhCOsIy4HEruw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"@types/node": "^10.12.18",
|
"@types/node": "^10.12.18",
|
||||||
|
@ -75,7 +75,7 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"devtron": "1.4.0",
|
"devtron": "1.4.0",
|
||||||
"electron": "6.0.0-beta.9",
|
"electron": "6.0.0-beta.10",
|
||||||
"electron-builder": "20.44.2",
|
"electron-builder": "20.44.2",
|
||||||
"electron-compile": "6.4.4",
|
"electron-compile": "6.4.4",
|
||||||
"electron-installer-debian": "2.0.0",
|
"electron-installer-debian": "2.0.0",
|
||||||
|
@ -67,12 +67,18 @@ class TabContext {
|
|||||||
this.components = {};
|
this.components = {};
|
||||||
|
|
||||||
this.$noteTitle.on('input', () => {
|
this.$noteTitle.on('input', () => {
|
||||||
|
if (!this.note) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
this.noteChanged();
|
this.noteChanged();
|
||||||
|
|
||||||
const title = this.$noteTitle.val();
|
this.note.title = this.$noteTitle.val();
|
||||||
|
|
||||||
this.tabRow.updateTab(this.$tab[0], {title});
|
this.tabRow.updateTab(this.$tab[0], {title: this.note.title});
|
||||||
treeService.setNoteTitle(this.noteId, title);
|
treeService.setNoteTitle(this.noteId, this.note.title);
|
||||||
|
|
||||||
|
this.setTitleBar();
|
||||||
});
|
});
|
||||||
|
|
||||||
if (utils.isDesktop()) {
|
if (utils.isDesktop()) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user