chore(views/table): remove unnecessary log

This commit is contained in:
Elian Doran 2025-07-04 14:42:04 +03:00
parent 6456bb34ae
commit 8614d39ef4
No known key found for this signature in database

View File

@ -110,7 +110,6 @@ export function buildColumnDefinitions(info: PromotedAttributeInformation[]) {
formatter: () => `<span class="bx bx-window-open"></span>`,
cellClick: (e, cell) => {
const noteId = cell.getRow().getCell("noteId").getValue();
console.log("Got note ID", noteId);
if (noteId) {
link.goToLinkExt(e as MouseEvent, `#root/${noteId}`);
}