mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 10:26:08 +01:00 
			
		
		
		
	change order of execution to mitigate race conditions
This commit is contained in:
		| @@ -162,9 +162,6 @@ class TabContext { | |||||||
|             this.noteChangeDisabled = false; |             this.noteChangeDisabled = false; | ||||||
|         } |         } | ||||||
|  |  | ||||||
|         // after loading new note make sure editor is scrolled to the top |  | ||||||
|         this.getComponent().scrollToTop(); |  | ||||||
|  |  | ||||||
|         this.setTitleBar(); |         this.setTitleBar(); | ||||||
|  |  | ||||||
|         this.cleanup(); // esp. on windows autocomplete is not getting closed automatically |         this.cleanup(); // esp. on windows autocomplete is not getting closed automatically | ||||||
| @@ -186,6 +183,9 @@ class TabContext { | |||||||
|         } |         } | ||||||
|  |  | ||||||
|         bundleService.executeRelationBundles(this.note, 'runOnNoteView', this); |         bundleService.executeRelationBundles(this.note, 'runOnNoteView', this); | ||||||
|  |  | ||||||
|  |         // after loading new note make sure editor is scrolled to the top | ||||||
|  |         this.getComponent().scrollToTop(); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     async show() { |     async show() { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user