mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 02:16:05 +01:00 
			
		
		
		
	feat(views/board): react to changes in "groupBy"
This commit is contained in:
		| @@ -547,7 +547,9 @@ export default class BoardView extends ViewMode<BoardData> { | ||||
|             // React to changes in branches for subchildren (e.g., moved, added, or removed notes) | ||||
|             loadResults.getBranchRows().some(branch => this.noteIds.includes(branch.noteId!)) || | ||||
|             // React to attachment change | ||||
|             loadResults.getAttachmentRows().some(att => att.ownerId === this.parentNote.noteId && att.title === "board.json"); | ||||
|             loadResults.getAttachmentRows().some(att => att.ownerId === this.parentNote.noteId && att.title === "board.json") || | ||||
|             // React to changes in "groupBy" | ||||
|             loadResults.getAttributeRows().some(attr => attr.name === "board:groupBy" && attr.noteId === this.parentNote.noteId); | ||||
|  | ||||
|         if (hasRelevantChanges && this.renderer) { | ||||
|             // Use differential rendering with API refresh | ||||
|   | ||||
		Reference in New Issue
	
	Block a user