chore(views/board): prepare to group by attribute

This commit is contained in:
Elian Doran
2025-07-19 18:34:59 +03:00
parent 11547ecaa3
commit 951b5384a3
2 changed files with 26 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
import ViewMode, { ViewModeArgs } from "../view_mode";
import { getBoardData } from "./data";
const TPL = /*html*/`
<div class="board-view">
@@ -45,7 +46,8 @@ export default class BoardView extends ViewMode<StateInfo> {
}
private async renderBoard(el: HTMLElement) {
const data = await getBoardData(this.noteIds, "status");
console.log("Board data:", data);
}
}