mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 19:49:01 +01:00 
			
		
		
		
	fix(views/table): not reacting to title changes
This commit is contained in:
		
							parent
							
								
									b93a4a3e42
								
							
						
					
					
						commit
						3720ab6df6
					
				| @ -231,11 +231,9 @@ export default class TableView extends ViewMode<StateInfo> { | ||||
|             this.#manageColumnUpdate(); | ||||
|         } | ||||
| 
 | ||||
|         if (loadResults.getBranchRows().some(branch => branch.parentNoteId === this.parentNote.noteId)) { | ||||
|             this.#manageRowsUpdate(); | ||||
|         } | ||||
| 
 | ||||
|         if (loadResults.getAttributeRows().some(attr => this.args.noteIds.includes(attr.noteId!))) { | ||||
|         if (loadResults.getBranchRows().some(branch => branch.parentNoteId === this.parentNote.noteId) | ||||
|             || loadResults.getNoteIds().some(noteId => this.args.noteIds.includes(noteId) | ||||
|             || loadResults.getAttributeRows().some(attr => this.args.noteIds.includes(attr.noteId!)))) { | ||||
|             this.#manageRowsUpdate(); | ||||
|         } | ||||
| 
 | ||||
|  | ||||
| @ -67,6 +67,5 @@ export default function getPromotedAttributeInformation(parentNote: FNote) { | ||||
|             type | ||||
|         }); | ||||
|     } | ||||
|     console.log("Promoted attribute information", info); | ||||
|     return info; | ||||
| } | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Elian Doran
						Elian Doran